From bc4686c68edf83c8f202dfae40fa1e0aec3eafd7 Mon Sep 17 00:00:00 2001 From: NotSirius-A <43278522+NotSirius-A@users.noreply.github.com> Date: Thu, 25 Dec 2025 13:11:47 +0100 Subject: [PATCH] Fixed menu editor freezing on right-clicking categories on the left menu --- .../usr/share/cinnamon/cinnamon-menu-editor/cme/MainWindow.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/files/usr/share/cinnamon/cinnamon-menu-editor/cme/MainWindow.py b/files/usr/share/cinnamon/cinnamon-menu-editor/cme/MainWindow.py index 7188dfa232..1cdbe10376 100644 --- a/files/usr/share/cinnamon/cinnamon-menu-editor/cme/MainWindow.py +++ b/files/usr/share/cinnamon/cinnamon-menu-editor/cme/MainWindow.py @@ -507,8 +507,7 @@ def on_menu_tree_popup_menu(self, menu_tree, event=None): event_time = 0 menu_tree.grab_focus() menu_tree.set_cursor(path, menu_tree.get_columns()[0], 0) - popup = self.tree.get_object('edit_menu') - popup.popup(None, None, None, None, button, event_time) + self.popup_menu.popup(None, None, None, None, button, event_time) #without this shift-f10 won't work return True