summaryrefslogtreecommitdiffstats
path: root/kicker/taskbar
diff options
context:
space:
mode:
authorSlávek Banko <slavek.banko@axis.cz>2013-04-04 16:38:02 +0200
committerSlávek Banko <slavek.banko@axis.cz>2013-04-04 16:38:02 +0200
commit42f6f23d4b06e6abbf794298ff17d15128e1c5e9 (patch)
treef2f2637fa0795aed572ceaa4db1b60eb0c1010e4 /kicker/taskbar
parent48c5586497dc6a9d6caf84d48c164da49e060e06 (diff)
downloadtdebase-42f6f23d4b06e6abbf794298ff17d15128e1c5e9.tar.gz
tdebase-42f6f23d4b06e6abbf794298ff17d15128e1c5e9.zip
Fix applications invisible on taskbar with xinerama
This resolves Bug 1429
Diffstat (limited to 'kicker/taskbar')
-rw-r--r--kicker/taskbar/taskbar.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/kicker/taskbar/taskbar.cpp b/kicker/taskbar/taskbar.cpp
index 8f1f4a6ac..5f92b9fa4 100644
--- a/kicker/taskbar/taskbar.cpp
+++ b/kicker/taskbar/taskbar.cpp
@@ -256,16 +256,16 @@ void TaskBar::configure()
m_currentScreen = -1; // Show all screens or re-get our screen
m_showOnlyCurrentScreen = (m_settingsObject->showCurrentScreenOnly() &&
TQApplication::desktop()->isVirtualDesktop() &&
- TQApplication::desktop()->numScreens() > 1) || (TQApplication::desktop()->numScreens() < 2);
+ TQApplication::desktop()->numScreens() > 1);
// we need to watch geometry issues if we aren't showing windows when we
// are paying attention to the current Xinerama screen
+ // disconnect first in case we've been here before
+ // to avoid multiple connections
+ disconnect(TaskManager::the(), TQT_SIGNAL(windowChangedGeometry(Task::Ptr)),
+ this, TQT_SLOT(windowChangedGeometry(Task::Ptr)));
if (m_showOnlyCurrentScreen)
{
- // disconnect first in case we've been here before
- // to avoid multiple connections
- disconnect(TaskManager::the(), TQT_SIGNAL(windowChangedGeometry(Task::Ptr)),
- this, TQT_SLOT(windowChangedGeometry(Task::Ptr)));
connect(TaskManager::the(), TQT_SIGNAL(windowChangedGeometry(Task::Ptr)),
this, TQT_SLOT(windowChangedGeometry(Task::Ptr)));
}