From be8387b70e6e7ab6930cb61ec11006f61673371b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lubo=C5=A1=20Lu=C5=88=C3=A1k?= Date: Thu, 4 Mar 2004 16:52:37 +0000 Subject: [PATCH] sticky -> on all desktops svn path=/trunk/kdebase/kwin/; revision=293605 --- clients/default/kdedefault.cpp | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/clients/default/kdedefault.cpp b/clients/default/kdedefault.cpp index 8c184bd731..ff969d5533 100644 --- a/clients/default/kdedefault.cpp +++ b/clients/default/kdedefault.cpp @@ -793,7 +793,8 @@ void KDEDefaultClient::addClientButtons( const QString& s, bool isLeft ) if (!button[BtnSticky]) { button[BtnSticky] = new KDEDefaultButton(this, "sticky", - largeButtons, isLeft, true, NULL, isOnAllDesktops()?i18n("Un-Sticky"):i18n("Sticky")); + largeButtons, isLeft, true, NULL, + isOnAllDesktops()?i18n("Not On All Desktops"):i18n("On All Desktops")); button[BtnSticky]->turnOn( isOnAllDesktops() ); connect( button[BtnSticky], SIGNAL(clicked()), this, SLOT(toggleOnAllDesktops()) ); @@ -879,7 +880,7 @@ void KDEDefaultClient::desktopChange() button[BtnSticky]->turnOn(on); button[BtnSticky]->repaint(false); QToolTip::remove( button[BtnSticky] ); - QToolTip::add( button[BtnSticky], on ? i18n("Un-Sticky") : i18n("Sticky")); + QToolTip::add( button[BtnSticky], on ? i18n("Not On All Desktops") : i18n("On All Desktops")); } }