all repos — fluxbox @ be90145227ca5cb9b54547ccb3905419f4d4f9d9

custom fork of the fluxbox windowmanager

bugfix: do not warp workspaces with only one workspace
Mathias Gumz akira at fluxbox dot org
commit

be90145227ca5cb9b54547ccb3905419f4d4f9d9

parent

86c9b100f3e27f5b3136f4a1d37b703306e7ddd9

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

jump to
M src/Screen.hhsrc/Screen.hh

@@ -102,7 +102,7 @@ void initMenus();

bool isRootColormapInstalled() const { return root_colormap_installed; } bool isScreenManaged() const { return managed; } - bool isWorkspaceWarping() const { return *resource.workspace_warping; } + bool isWorkspaceWarping() const { return (m_workspaces_list.size() > 1) && *resource.workspace_warping; } bool doAutoRaise() const { return *resource.auto_raise; } bool clickRaises() const { return *resource.click_raises; } bool doOpaqueMove() const { return *resource.opaque_move; }