all repos — fluxbox @ 2aba567ea6c45d04d0f560e3f406fb396efe55e3

custom fork of the fluxbox windowmanager

do not leave stale oplock behind

deiconify'ing a client on a different workspace left an oplock by a
shortcut return, turning the client semi- to inaccessible

BUG: 1010
Thomas Lübking thomas.luebking@gmail.com
commit

2aba567ea6c45d04d0f560e3f406fb396efe55e3

parent

9d34cdbfa9a4e026cca504c7aec728ddfc86cbc6

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

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

@@ -1430,8 +1430,10 @@ (*trans_it)->fbwindow()->deiconify(false);

} } - if (m_workspace_number != screen().currentWorkspaceID()) + if (m_workspace_number != screen().currentWorkspaceID()) { + oplock = false; return; + } show();