Summary: | Mimimize button missing on "Compaq Flash Reader" camera window | ||
---|---|---|---|
Product: | [Applications] digikam | Reporter: | David Phillips <daviddphillips> |
Component: | Import-MainView | Assignee: | Digikam Developers <digikam-bugs-null> |
Status: | RESOLVED FIXED | ||
Severity: | wishlist | CC: | ach |
Priority: | NOR | ||
Version: | 0.7.4 | ||
Target Milestone: | --- | ||
Platform: | Debian testing | ||
OS: | Linux | ||
Latest Commit: | Version Fixed In: | 0.9.0 | |
Sentry Crash Report: |
Description
David Phillips
2005-11-16 11:10:44 UTC
*** Bug 98462 has been marked as a duplicate of this bug. *** SVN commit 541885 by cgilles: digikam from stable : no need to use parent widget to create the cameragui instance like a real modal dialog. Now, you can minimize the camera dialog during pictures download. CCMAIL: digikam-devel@kde.org BUG: 116485 M +3 -2 cameraui.cpp --- branches/stable/extragear/graphics/digikam/utilities/cameragui/cameraui.cpp #541884:541885 @@ -70,10 +70,11 @@ #include "cameraui.h" #include "scanlib.h" -CameraUI::CameraUI(QWidget* parent, const QString& title, +CameraUI::CameraUI(QWidget* /*parent*/, const QString& title, const QString& model, const QString& port, const QString& path) - : QDialog(parent, 0, false, WDestructiveClose) + : QDialog(0, // B.K.O # 116485: no parent for this modal dialog. + 0, false, WDestructiveClose) { // -- setup view ----------------------------------------- SVN commit 541880 by cgilles: digikam from trunk : no need to use parent widget to create the cameragui instance like a real modal dialog. Now, you can minimize the camera dialog during pictures download. CCMAIL: digikam-devel@kde.org CCBUGS: 116485 M +3 -2 cameraui.cpp --- trunk/extragear/graphics/digikam/utilities/cameragui/cameraui.cpp #541879:541880 @@ -153,12 +153,13 @@ ImagePropertiesSideBarCamGui *rightSidebar; }; -CameraUI::CameraUI(QWidget* parent, const QString& cameraTitle, +CameraUI::CameraUI(QWidget* /*parent*/, const QString& cameraTitle, const QString& model, const QString& port, const QString& path) : KDialogBase(Plain, cameraTitle, Help|User1|User2|User3|Close, Close, - parent, 0, false, true, + 0, // B.K.O # 116485: no parent for this modal dialog. + 0, false, true, i18n("D&elete"), i18n("&Download"), i18n("&Select")) *** Bug 250299 has been marked as a duplicate of this bug. *** |