commit 14cd58224fc083fe2d0727117a3853eae2d3d09d parent c687a38fa4c5585d2cb977a78c2ecff9297a33d1 Author: deurzen <m.deurzen@tum.de> Date: Wed, 29 Sep 2021 05:39:51 +0200 fixes next-workspace activator bug on contexts >0 Diffstat:
M | src/core/model.cc | | | 2 | +- |
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/core/model.cc b/src/core/model.cc @@ -1449,7 +1449,7 @@ Model::activate_next_workspace(Direction direction) void Model::activate_next_workspace_current_context(Direction direction) { - activate_workspace(mp_context->workspaces().next_index(direction)); + activate_workspace(*mp_context->workspaces().next_element(direction)); } void