Summary: | Digikam & imageeditor: full scren buglets | ||
---|---|---|---|
Product: | [Applications] digikam | Reporter: | Achim Bohnet <ach> |
Component: | Usability-FullScreen | Assignee: | 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 | |
Sentry Crash Report: |
Description
Achim Bohnet
2004-09-04 01:24:32 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 |