Bug 112063 - When viewing image in fullscreen there is an ugly frame at the border of the screen.
Summary: When viewing image in fullscreen there is an ugly frame at the border of the ...
Status: RESOLVED FIXED
Alias: None
Product: digikam
Classification: Applications
Component: Usability-FullScreen (show other bugs)
Version: 0.7.3
Platform: Gentoo Packages Linux
: NOR wishlist
Target Milestone: ---
Assignee: Digikam Developers
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2005-09-05 08:23 UTC by Vova
Modified: 2017-08-04 12:13 UTC (History)
1 user (show)

See Also:
Latest Commit:
Version Fixed In: 0.9.0


Attachments

Note You need to log in before you can comment on or make changes to this bug.
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