all repos — fluxbox @ 3c8b0b2dd714b5525e4e537cf03d66efa115e7b9

custom fork of the fluxbox windowmanager

Moved XSync so it does a redraw
fluxgen fluxgen
commit

3c8b0b2dd714b5525e4e537cf03d66efa115e7b9

parent

260ce1e171bcab1fc60bd1c01219c69b9d8facc2

1 files changed, 4 insertions(+), 3 deletions(-)

jump to
M src/Screen.ccsrc/Screen.cc

@@ -649,6 +649,8 @@ if (! current_workspace || id >= workspacesList->count() || id < 0)

return; if (id != current_workspace->getWorkspaceID()) { + XSync(fluxbox->getXDisplay(), True); + current_workspace->hideAll(); workspacemenu->setItemSelected(current_workspace->getWorkspaceID() + 2,

@@ -672,9 +674,8 @@

current_workspace->showAll(); if (resource.focus_last && current_workspace->getLastFocusedWindow()) - current_workspace->getLastFocusedWindow()->setInputFocus(); - - XSync(fluxbox->getXDisplay(), True); + current_workspace->getLastFocusedWindow()->setInputFocus(); + } updateNetizenCurrentWorkspace();