Skip to content
Snippets Groups Projects
Commit b84f48ec authored by Marko Mecina's avatar Marko Mecina
Browse files

add accel for save as

parent cb1eb293
No related branches found
No related tags found
No related merge requests found
...@@ -620,6 +620,7 @@ class CcsEditor(Gtk.Window): ...@@ -620,6 +620,7 @@ class CcsEditor(Gtk.Window):
action = Gtk.Action(name="FileSaveAs", label="_Save As", tooltip=None, stock_id=Gtk.STOCK_SAVE_AS) action = Gtk.Action(name="FileSaveAs", label="_Save As", tooltip=None, stock_id=Gtk.STOCK_SAVE_AS)
action.connect("activate", self.on_menu_file_saveas) action.connect("activate", self.on_menu_file_saveas)
action_group.add_action_with_accel(action, "<control><shift>S")
action_group.add_action(action) action_group.add_action(action)
action = Gtk.Action(name="FileQuit", label="_Quit", tooltip=None, stock_id=Gtk.STOCK_QUIT) action = Gtk.Action(name="FileQuit", label="_Quit", tooltip=None, stock_id=Gtk.STOCK_QUIT)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment