[Bug 146032] New: panning doesn't work in LT

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

[Bug 146032] New: panning doesn't work in LT

Bugzilla from mikmach@wp.pl
------- 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=146032         
           Summary: panning doesn't work in LT
           Product: digikam
           Version: unspecified
          Platform: Compiled Sources
        OS/Version: Linux
            Status: UNCONFIRMED
          Severity: normal
          Priority: NOR
         Component: Light Table
        AssignedTo: digikam-devel kde org
        ReportedBy: mikmach wp pl


Version:            (using KDE Devel)
Installed from:    Compiled sources
OS:                Linux

After today (27.05) svn update panning in LT stopped working.
svn info 668753.

Pan widget opens as whole image was visible.
_______________________________________________
Digikam-devel mailing list
[hidden email]
https://mail.kde.org/mailman/listinfo/digikam-devel
Reply | Threaded
Open this post in threaded view
|

[Bug 146032] panning doesn't work in LT

Gilles Caulier-4
------- 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=146032         




------- Additional Comments From caulier.gilles gmail com  2007-05-27 20:37 -------
Yes, i can reproduce it.

For info, commit #668753 come from Marcel :

SVN commit 668753 by mwiesweg:

Adapt to DImg-based preview

 M  +10 -9     digikam/imagepreviewview.cpp
 M  +3 -3      digikam/imagepreviewview.h
 M  +9 -0      libs/widgets/common/paniconwid
get.cpp
 M  +5 -0      libs/widgets/common/paniconwidget.h
 M  +6 -6      utilities/lighttable/lighttablepreview.cpp
 M  +1 -1      utilities/lighttable/lighttablepreview.h

Marcel, what wrong (:=))) ?

Gilles
_______________________________________________
Digikam-devel mailing list
[hidden email]
https://mail.kde.org/mailman/listinfo/digikam-devel
Reply | Threaded
Open this post in threaded view
|

[Bug 146032] panning doesn't work in LT

Gilles Caulier-4
In reply to this post by Bugzilla from mikmach@wp.pl
------- 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=146032         
caulier.gilles gmail com changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |marcel.wiesweg gmx de



------- Additional Comments From caulier.gilles gmail com  2007-05-28 10:42 -------
Mik, and it's the same problem about preview mode from Album GUI...

Gilles
_______________________________________________
Digikam-devel mailing list
[hidden email]
https://mail.kde.org/mailman/listinfo/digikam-devel
Reply | Threaded
Open this post in threaded view
|

[Bug 146032] panning doesn't work in LT

Gilles Caulier-4
In reply to this post by Bugzilla from mikmach@wp.pl
------- 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=146032         
caulier.gilles gmail com changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |gerhard kulzer net



------- Additional Comments From caulier.gilles gmail com  2007-05-28 10:43 -------
Gerhard,

Please wait than this file is fixed before to release 0.9.2-beta2. Thanks in advance

Gilles
_______________________________________________
Digikam-devel mailing list
[hidden email]
https://mail.kde.org/mailman/listinfo/digikam-devel
Reply | Threaded
Open this post in threaded view
|

[Bug 146032] panning doesn't work in LT

Gilles Caulier-4
In reply to this post by Bugzilla from mikmach@wp.pl
------- 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=146032         
caulier.gilles gmail com changed:

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



------- Additional Comments From caulier.gilles gmail com  2007-05-28 10:52 -------
SVN commit 668971 by cgilles:

digikam from trunk : do not resize Dimg before to pass it like QImage else original image size informations will be lost.
BUG: 146032


 M  +1 -4      paniconwidget.cpp  


--- trunk/extragear/graphics/digikam/libs/widgets/common/paniconwidget.cpp #668970:668971
 @ -109,11 +109,8  @
 
 void PanIconWidget::setImage(int previewWidth, int previewHeight, const DImg& image)
 {
-    QSize sz(image.width(), image.height());
-    sz.scale(previewWidth, previewHeight, QSize::ScaleMin);
     DImg img(image);
-    QImage qimage = img.smoothScale(sz.width(), sz.height()).copyQImage();
-    setImage(previewWidth, previewHeight, qimage);
+    setImage(previewWidth, previewHeight, img.copyQImage());
 }
 
 void PanIconWidget::slotZoomFactorChanged(double factor)
_______________________________________________
Digikam-devel mailing list
[hidden email]
https://mail.kde.org/mailman/listinfo/digikam-devel
Reply | Threaded
Open this post in threaded view
|

[Bug 146032] panning doesn't work in LT

Gilles Caulier-4
In reply to this post by Bugzilla from mikmach@wp.pl
------- 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=146032         




------- Additional Comments From caulier.gilles gmail com  2007-05-28 10:59 -------
Gerhard,

All is fine to release 0.9.2-beta2 now (:=)...

Gilles
_______________________________________________
Digikam-devel mailing list
[hidden email]
https://mail.kde.org/mailman/listinfo/digikam-devel
Reply | Threaded
Open this post in threaded view
|

[Bug 146032] panning doesn't work in LT

Gerhard Kulzer
In reply to this post by Bugzilla from mikmach@wp.pl
------- 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=146032         




------- Additional Comments From gerhard kulzer net  2007-06-02 07:08 -------
Am Monday 28 May 2007 schrieb Gilles Caulier:
[bugs.kde.org quoted mail]

Can I do beta3, Gilles?
Would have time this weekend

Gerhard :-)
_______________________________________________
Digikam-devel mailing list
[hidden email]
https://mail.kde.org/mailman/listinfo/digikam-devel
Reply | Threaded
Open this post in threaded view
|

[Bug 146032] panning doesn't work in LT

Gilles Caulier-4
In reply to this post by Bugzilla from mikmach@wp.pl
------- 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=146032         




------- Additional Comments From caulier.gilles gmail com  2007-06-02 08:40 -------
Gerhard,

I recommend to wait to release next week, because this week end all extragear repository (witch contain digiKam) will be moved to another part of KDE.

Are you follow extragear mailing list announce ?

Gilles
_______________________________________________
Digikam-devel mailing list
[hidden email]
https://mail.kde.org/mailman/listinfo/digikam-devel
Reply | Threaded
Open this post in threaded view
|

[Bug 146032] panning doesn't work in LT

Gerhard Kulzer
In reply to this post by Bugzilla from mikmach@wp.pl
------- 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=146032         




------- Additional Comments From gerhard kulzer net  2007-06-02 09:10 -------
Am Saturday 02 June 2007 schrieb Gilles Caulier:
[bugs.kde.org quoted mail]
Ok
> Are you follow extragear mailing list announce ?


Yes I do
>
> Gilles




A+
Gerhard
_______________________________________________
Digikam-devel mailing list
[hidden email]
https://mail.kde.org/mailman/listinfo/digikam-devel
Reply | Threaded
Open this post in threaded view
|

[Bug 146032] panning doesn't work in LT

Gilles Caulier-4
In reply to this post by Bugzilla from mikmach@wp.pl
------- 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=146032         




------- Additional Comments From caulier.gilles gmail com  2007-06-03 12:20 -------
Gerhard,

Like the migration is done and compile properlly, and like MArcel have commited yesterday a fix about Exif rotation rules with Light Table and Album Gui preview, I think all is right to release 0.9.2-beta3 today... (if you can of course (:=)))

Gilles
_______________________________________________
Digikam-devel mailing list
[hidden email]
https://mail.kde.org/mailman/listinfo/digikam-devel