File tree Expand file tree Collapse file tree 2 files changed +6
-2
lines changed Expand file tree Collapse file tree 2 files changed +6
-2
lines changed Original file line number Diff line number Diff line change @@ -72,13 +72,13 @@ namespace jorts {
7272 }
7373 });
7474 var new_action = new SimpleAction (" new" , null );
75- set_accels_for_action (" app.new " , {" <Control>n" });
75+ set_accels_for_action (" app.action_new " , {" <Control>n" });
7676 add_action (new_action);
7777 new_action. activate. connect (() = > {
7878 create_note(null );
7979 });
8080 var delete_action = new SimpleAction (" delete" , null );
81- set_accels_for_action (" app.delete " , {" <Control>w" });
81+ set_accels_for_action (" app.action_delete " , {" <Control>w" });
8282 add_action (delete_action);
8383 delete_action. activate. connect (() = > {
8484 MainWindow note = (MainWindow )get_active_window ();
Original file line number Diff line number Diff line change @@ -320,6 +320,10 @@ namespace jorts {
320320 var label = " %s %" . printf(zoomtostring);
321321 this . popover. zoom_default_button. set_label(label);
322322 ((Application )this . application). latest_zoom = zoom;
323+
324+ print(label);
325+
326+
323327 }
324328 }
325329}
You can’t perform that action at this time.
0 commit comments