From 2857ddcc6b2522ea0c74658fb4579f3b5ffd3278 Mon Sep 17 00:00:00 2001 From: Stephan Sokolow Date: Sun, 26 Jan 2020 06:02:36 -0500 Subject: [PATCH] For now, go back to querying the desktop's shape on every command Closes #107 --- quicktile/commands.py | 1 + 1 file changed, 1 insertion(+) diff --git a/quicktile/commands.py b/quicktile/commands.py index 998f526..55e1091 100644 --- a/quicktile/commands.py +++ b/quicktile/commands.py @@ -209,6 +209,7 @@ def call(self, if cmd: logging.debug("Executing command '%s' with arguments %r, %r", command, args, kwargs) + winman.update_geometry_cache() cmd(winman, *args, **kwargs) return True