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)
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