From: dooglus Date: Tue, 29 Jan 2008 22:54:38 +0000 (+0000) Subject: Change the default 'toggle onion skin' keyboard shortcut from control-o (which is... X-Git-Url: https://git.pterodactylus.net/?a=commitdiff_plain;ds=sidebyside;h=00c52c54ee5ff11599c661b777941b269e7b3745;hp=823db6d3004c792ca4377ed0fe5606a0f74f716a;p=synfig.git Change the default 'toggle onion skin' keyboard shortcut from control-o (which is the stock binding for 'open') to control-k. git-svn-id: http://svn.voria.com/code@1524 1f10aa63-cdf2-0310-b900-c93c546f37ac --- diff --git a/synfig-studio/trunk/src/gtkmm/app.cpp b/synfig-studio/trunk/src/gtkmm/app.cpp index 288ac76..bc4c188 100644 --- a/synfig-studio/trunk/src/gtkmm/app.cpp +++ b/synfig-studio/trunk/src/gtkmm/app.cpp @@ -925,7 +925,7 @@ init_ui_manager() ACCEL2(Gtk::AccelKey(',',Gdk::CONTROL_MASK,"//seek-prev-frame")); ACCEL2(Gtk::AccelKey('>',Gdk::CONTROL_MASK,"//seek-next-second")); ACCEL2(Gtk::AccelKey('<',Gdk::CONTROL_MASK,"//seek-prev-second")); - ACCEL2(Gtk::AccelKey('o',Gdk::CONTROL_MASK,"//toggle-onion-skin")); + ACCEL2(Gtk::AccelKey('k',Gdk::CONTROL_MASK,"//toggle-onion-skin")); ACCEL("//play", "p"); ACCEL("//seek-begin","Home"); ACCEL("//seek-end","End");