Bug 67683

Summary: Window button tooltips always shown on most window decorations
Product: [Plasma] kwin Reporter: Derick Swanepoel <derick>
Component: generalAssignee: KWin default assignee <kwin-bugs-null>
Status: RESOLVED FIXED    
Severity: normal    
Priority: NOR    
Version: unspecified   
Target Milestone: ---   
Platform: Compiled Sources   
OS: Linux   
Latest Commit: Version Fixed In:

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;