all repos — fluxbox @ e3e8d5c33bf60d537783a39589fd8290e8264bbb

custom fork of the fluxbox windowmanager

fix systemtray overlap
simonb simonb
commit

e3e8d5c33bf60d537783a39589fd8290e8264bbb

parent

d24c090ecc26aedab8c5dfeae701a4f86883c4c7

2 files changed, 6 insertions(+), 1 deletions(-)

jump to
M ChangeLogChangeLog

@@ -1,5 +1,8 @@

(Format: Year/Month/Day) Changes for 0.9.14 +*05/05/17: + * Fix systemtray overlap (Simon + Thanks Vadim) + SystemTray.cc *05/05/14: * Fix some Ewmh/Gnome issues (Mathias + thanx Vadim) + _NET_CLIENT_LIST and _NET_CLIENT_LIST_STACKING not updated
M src/SystemTray.ccsrc/SystemTray.cc

@@ -347,8 +347,10 @@ if (static_cast<unsigned int>(event.xconfigure.width) != (*it)->width() ||

static_cast<unsigned int>(event.xconfigure.height) != (*it)->height()) { // the position might differ so we update from our local // copy of position - (*it)->moveResize((*it)->x(), (*it)->y(), + XMoveResizeWindow(FbTk::App::instance()->display(), (*it)->window(), + (*it)->x(), (*it)->y(), (*it)->width(), (*it)->height()); + // this was why gaim wasn't centring the icon (*it)->sendConfigureNotify(0, 0, (*it)->width(), (*it)->height()); }