From fcafe5326ce049ac09726264245d9af704ed137a Mon Sep 17 00:00:00 2001 From: chrysn Date: Thu, 1 Jan 2026 21:34:42 +0100 Subject: [PATCH] Remove old window presentation workaround that causes timstamp overflows --- src/hamster/lib/configuration.py | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/src/hamster/lib/configuration.py b/src/hamster/lib/configuration.py index d2ba189c4..516fa161e 100644 --- a/src/hamster/lib/configuration.py +++ b/src/hamster/lib/configuration.py @@ -74,10 +74,7 @@ def close_window(self): def present(self): """Show window and bring it to the foreground.""" - # workaround https://gitlab.gnome.org/GNOME/gtk/issues/624 - # fixed in gtk-3.24.1 (2018-09-19) - # self.overview_controller.window.present() - self.window.present_with_time(glib.get_monotonic_time() / 1000) + self.window.present() def show(self): """Show window.