aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog3
-rw-r--r--src/SystemTray.cc4
2 files changed, 6 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 22572a1..2f7c123 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,8 @@
1(Format: Year/Month/Day) 1(Format: Year/Month/Day)
2Changes for 0.9.14 2Changes for 0.9.14
3*05/05/17:
4 * Fix systemtray overlap (Simon + Thanks Vadim)
5 SystemTray.cc
3*05/05/14: 6*05/05/14:
4 * Fix some Ewmh/Gnome issues (Mathias + thanx Vadim) 7 * Fix some Ewmh/Gnome issues (Mathias + thanx Vadim)
5 + _NET_CLIENT_LIST and _NET_CLIENT_LIST_STACKING not updated 8 + _NET_CLIENT_LIST and _NET_CLIENT_LIST_STACKING not updated
diff --git a/src/SystemTray.cc b/src/SystemTray.cc
index 1aced06..c2ea8f9 100644
--- a/src/SystemTray.cc
+++ b/src/SystemTray.cc
@@ -347,8 +347,10 @@ void SystemTray::handleEvent(XEvent &event) {
347 static_cast<unsigned int>(event.xconfigure.height) != (*it)->height()) { 347 static_cast<unsigned int>(event.xconfigure.height) != (*it)->height()) {
348 // the position might differ so we update from our local 348 // the position might differ so we update from our local
349 // copy of position 349 // copy of position
350 (*it)->moveResize((*it)->x(), (*it)->y(), 350 XMoveResizeWindow(FbTk::App::instance()->display(), (*it)->window(),
351 (*it)->x(), (*it)->y(),
351 (*it)->width(), (*it)->height()); 352 (*it)->width(), (*it)->height());
353
352 // this was why gaim wasn't centring the icon 354 // this was why gaim wasn't centring the icon
353 (*it)->sendConfigureNotify(0, 0, (*it)->width(), (*it)->height()); 355 (*it)->sendConfigureNotify(0, 0, (*it)->width(), (*it)->height());
354 } 356 }