Bug 112063

Summary: When viewing image in fullscreen there is an ugly frame at the border of the screen.
Product: [Applications] digikam Reporter: Vova <kv11111>
Component: Usability-FullScreenAssignee: Digikam Developers <digikam-bugs-null>
Status: RESOLVED FIXED    
Severity: wishlist CC: caulier.gilles
Priority: NOR    
Version: 0.7.3   
Target Milestone: ---   
Platform: Gentoo Packages   
OS: Linux   
Latest Commit: Version Fixed In: 0.9.0

Description Vova 2005-09-05 08:23:38 UTC
Version:           0.7.3 (using KDE KDE 3.4.2)
Installed from:    Gentoo Packages
OS:                Linux

It's better to view image on solid (black) background, grey frame just distract attention from the image.
Comment 1 Phil Proudman 2006-01-08 01:21:14 UTC
Hi

I agree with this comment. The following code addition reduces the problem (no lines at the sides, although thinner grey lines remain at the top and bottom)...

in digikam-0.8.0/digikam/utilities/imageeditor/canvas.cpp..

add the following two "setFrame.." commands at line 133

Canvas::Canvas(QWidget *parent)
      : QScrollView(parent)
{
    viewport()->setBackgroundMode(Qt::NoBackground);
    setFrameShape( QFrame::NoFrame );
    setFrameShadow( QFrame::Plain );
    
    d = new CanvasPrivate;




Not sure how to get rid of the remaining lines.
Comment 2 caulier.gilles 2006-01-30 13:43:34 UTC
0.9.0 unstable implementation from svn trunk have been fixed. I close this file

Gilles