[Bug 392792] New: KDE4 screensaver "blank screen" isnt one color...
https://bugzilla.novell.com/show_bug.cgi?id=392792 Summary: KDE4 screensaver "blank screen" isnt one color... Product: openSUSE 11.0 Version: Beta 3 Platform: i686 OS/Version: openSUSE 11.0 Status: NEW Severity: Normal Priority: P5 - None Component: KDE4 Workspace AssignedTo: kde-maintainers@suse.de ReportedBy: aos@att.net QAContact: qa@suse.de Found By: --- Ok this may not sound like a big bug, but the KDE4 screensaver called "blank screen" is mostly black with some transition between black and grey in lines, KDE3 has this correct [only black]. -- Configure bugmail: https://bugzilla.novell.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug.
https://bugzilla.novell.com/show_bug.cgi?id=392792 User stbinner@novell.com added comment https://bugzilla.novell.com/show_bug.cgi?id=392792#c1 Stephan Binner <stbinner@novell.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |ASSIGNED --- Comment #1 from Stephan Binner <stbinner@novell.com> 2008-05-21 01:48:22 MST --- It's caused by the default widget style which adds a gradient to literally everything. :-( -- Configure bugmail: https://bugzilla.novell.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug.
https://bugzilla.novell.com/show_bug.cgi?id=392792 User dmueller@novell.com added comment https://bugzilla.novell.com/show_bug.cgi?id=392792#c2 --- Comment #2 from Dirk Mueller <dmueller@novell.com> 2008-06-02 04:45:24 MDT --- I've fixed that upstream.. --- kstyles/oxygen/oxygen.cpp (Revision 814437) +++ kstyles/oxygen/oxygen.cpp (Revision 814438) @@ -1852,6 +1852,11 @@ void OxygenStyle::polish(QWidget* widget switch (widget->windowFlags() & Qt::WindowType_Mask) { case Qt::Window: + // don't install a gradient on a (possibly blank) screen saver + if (widget->inherits("KScreenSaver")) + break; + + // fall through case Qt::Dialog: widget->installEventFilter(this); break; -- Configure bugmail: https://bugzilla.novell.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug.
https://bugzilla.novell.com/show_bug.cgi?id=392792 User llunak@novell.com added comment https://bugzilla.novell.com/show_bug.cgi?id=392792#c3 --- Comment #3 from Lubos Lunak <llunak@novell.com> 2008-06-02 09:24:49 MDT --- The patch may not be a proper solution (see http://lists.kde.org/?l=kde-commits&m=121214635222423&w=2 and on), but it's ok as a temporary workaround. -- Configure bugmail: https://bugzilla.novell.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug.
https://bugzilla.novell.com/show_bug.cgi?id=392792 User stbinner@novell.com added comment https://bugzilla.novell.com/show_bug.cgi?id=392792#c4 Stephan Binner <stbinner@novell.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|ASSIGNED |RESOLVED Resolution| |FIXED --- Comment #4 from Stephan Binner <stbinner@novell.com> 2008-06-03 07:18:14 MDT --- Work-around is submitted for checkin. -- Configure bugmail: https://bugzilla.novell.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug.
participants (1)
-
bugzilla_noreply@novell.com