[Bug 116485] New: Mimimize button missing on "Compaq Flash Reader" camera window

classic Classic list List threaded Threaded
4 messages Options
Reply | Threaded
Open this post in threaded view
|

[Bug 116485] New: Mimimize button missing on "Compaq Flash Reader" camera window

David Phillips
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
         
http://bugs.kde.org/show_bug.cgi?id=116485         
           Summary: Mimimize button missing on "Compaq Flash Reader" camera
                    window
           Product: digikam
           Version: 0.7.4
          Platform: Debian testing
        OS/Version: Linux
            Status: UNCONFIRMED
          Severity: wishlist
          Priority: NOR
         Component: general
        AssignedTo: digikam-devel kde org
        ReportedBy: daviddphillips yahoo com


Version:           0.7.4 (using KDE KDE 3.4.2)
Installed from:    Debian testing/unstable Packages
OS:                Linux

While importing my photos from the Compaq Flash Reader, I would like to minimize this window.  It is missing the little _ button in the top right, because this window is a non-modal dialog.
_______________________________________________
Digikam-devel mailing list
[hidden email]
https://mail.kde.org/mailman/listinfo/digikam-devel
Reply | Threaded
Open this post in threaded view
|

[Digikam-devel] [Bug 116485] Mimimize button missing on "Compaq Flash Reader" camera window

Bugzilla from owner@bugs.kde.org
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
         
http://bugs.kde.org/show_bug.cgi?id=116485         
caulier.gilles free fr changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |ach mpe mpg de



------- Additional Comments From caulier.gilles free fr  2006-04-04 13:19 -------
*** Bug 98462 has been marked as a duplicate of this bug. ***
_______________________________________________
Digikam-devel mailing list
[hidden email]
https://mail.kde.org/mailman/listinfo/digikam-devel
Reply | Threaded
Open this post in threaded view
|

[Digikam-devel] [Bug 116485] Mimimize button missing on "Compaq Flash Reader" camera window

Gilles Caulier
In reply to this post by David Phillips
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
         
http://bugs.kde.org/show_bug.cgi?id=116485         
caulier.gilles free fr changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|UNCONFIRMED                 |RESOLVED
         Resolution|                            |FIXED



------- Additional Comments From caulier.gilles free fr  2006-05-17 16:58 -------
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 -----------------------------------------
_______________________________________________
Digikam-devel mailing list
[hidden email]
https://mail.kde.org/mailman/listinfo/digikam-devel
Reply | Threaded
Open this post in threaded view
|

[Digikam-devel] [Bug 116485] Mimimize button missing on "Compaq Flash Reader" camera window

Gilles Caulier
In reply to this post by David Phillips
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
         
http://bugs.kde.org/show_bug.cgi?id=116485         




------- Additional Comments From caulier.gilles free fr  2006-05-17 17:05 -------
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"))
_______________________________________________
Digikam-devel mailing list
[hidden email]
https://mail.kde.org/mailman/listinfo/digikam-devel