Skip to content

Commit fcafe53

Browse files
committed
Remove old window presentation workaround that causes timstamp overflows
1 parent e5e1fb6 commit fcafe53

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

src/hamster/lib/configuration.py

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -74,10 +74,7 @@ def close_window(self):
7474

7575
def present(self):
7676
"""Show window and bring it to the foreground."""
77-
# workaround https://gitlab.gnome.org/GNOME/gtk/issues/624
78-
# fixed in gtk-3.24.1 (2018-09-19)
79-
# self.overview_controller.window.present()
80-
self.window.present_with_time(glib.get_monotonic_time() / 1000)
77+
self.window.present()
8178

8279
def show(self):
8380
"""Show window.

0 commit comments

Comments
 (0)