From 54e2d2feaa1165b00664dfaa9f737426e8d90599 Mon Sep 17 00:00:00 2001 From: aclist <92275929+aclist@users.noreply.github.com> Date: Tue, 30 Sep 2025 19:08:04 +0900 Subject: [PATCH] fix: block tooltips on main menu --- helpers/ui.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/helpers/ui.py b/helpers/ui.py index c4f2d19..df896fe 100644 --- a/helpers/ui.py +++ b/helpers/ui.py @@ -1872,6 +1872,8 @@ class TreeView(Gtk.TreeView): ) -> bool: if self.is_server_context(self.view) is False: return + if self.subpage is None: + return coords = widget.convert_widget_to_bin_window_coords(x, y) path = self.get_path_at_pos(coords.bx, coords.by)