Bug 67683 - Window button tooltips always shown on most window decorations
Summary: Window button tooltips always shown on most window decorations
Status: RESOLVED FIXED
Alias: None
Product: kwin
Classification: Plasma
Component: general (show other bugs)
Version: unspecified
Platform: Compiled Sources Linux
: NOR normal
Target Milestone: ---
Assignee: KWin default assignee
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2003-11-09 18:16 UTC by Derick Swanepoel
Modified: 2003-11-20 14:01 UTC (History)
0 users

See Also:
Latest Commit:
Version Fixed In:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Derick Swanepoel 2003-11-09 18:16:56 UTC
Version:            (using KDE KDE 3.1.93)
Installed from:    Compiled From Sources
Compiler:          gcc version 3.3.2 20031022 (Gentoo Linux 3.3.2-r2, propolice) 
OS:          Linux

Even when the "Show window button tooltips" checkbox is cleared in the window decorations configuration, the tooltips are still shown.

Some window decorations are not affected by this bug: IceWM, OpenLook, Quartz, Web.
The rest are affected: B II, CDE, Glow, KDE 2, KStep, Keramik, Laptop, ModSystem, Plastik, Redmond.
Comment 1 Lubos Lunak 2003-11-20 14:01:39 UTC
Subject: kdebase/kwin

CVS commit by lunakl: 

Fix #67683 by globally enabling/disabling tooltips. As the buttons are
the only thing in kwin that has tooltips, this is fine.
CCMAIL: 67683-done@bugs.kde.org


  M +3 -0      options.cpp   1.92


--- kdebase/kwin/options.cpp  #1.91:1.92
@@ -17,4 +17,5 @@ License. See the file "COPYING" for the 
 #include <kglobal.h>
 #include <kglobalsettings.h>
+#include <qtooltip.h>
 
 namespace KWinInternal
@@ -154,4 +155,6 @@ unsigned long Options::updateSettings()
     if( desktop_topmenu )
         topmenus = true;
+        
+    QToolTip::setGloballyEnabled( d->show_tooltips );
 
     return changed;