Bug 88809

Summary: Digikam & imageeditor: full scren buglets
Product: [Applications] digikam Reporter: Achim Bohnet <ach>
Component: Usability-FullScreenAssignee: Digikam Developers <digikam-bugs-null>
Status: RESOLVED FIXED    
Severity: normal CC: caulier.gilles
Priority: NOR    
Version: 0.7.0   
Target Milestone: ---   
Platform: unspecified   
OS: Linux   
Latest Commit: Version Fixed In: 7.5.0

Description Achim Bohnet 2004-09-04 01:24:32 UTC
Version:           0.7.0-cvs (using KDE 3.2.3,  (3.1))
Compiler:          gcc version 3.3.4 (Debian 1:3.3.4-7)
OS:                Linux (i686) release 2.6.8-ach-1-686

Digikam and imageeditor window:

After Switching to full screen and back the window has
not the original size but the size of the hole screen
(including the area used by kicker)
Comment 1 Renchi Raju 2004-09-04 17:49:05 UTC
CVS commit by pahlibar: 


fixed restoring the position and size of mainwindow and imagewindow(previous
 commit) after fullscreen maximization
CCMAIL: 88809-done@bugs.kde.org


  M +8 -5      digikamapp.cpp   1.54


--- kdeextragear-3/digikam/digikam/digikamapp.cpp  #1.53:1.54
@@ -607,7 +607,10 @@ void DigikamApp::slotToggleFullScreen()
     if (mFullScreen)
         {
+#if QT_VERSION >= 0x030300
+        setWindowState( windowState() & ~WindowFullScreen );
+#else
         showNormal();
+#endif
         mFullScreen = false;
-        move(0, 0);
         }
     else