From: dooglus Date: Sun, 17 Feb 2008 12:18:42 +0000 (+0000) Subject: Fix capitalization and allow keyboard shortcuts to select default interpolation method. X-Git-Url: https://git.pterodactylus.net/?a=commitdiff_plain;h=28c52292497440a9a1cf6c4944a3909646a6e2d9;p=synfig.git Fix capitalization and allow keyboard shortcuts to select default interpolation method. git-svn-id: http://svn.voria.com/code@1732 1f10aa63-cdf2-0310-b900-c93c546f37ac --- diff --git a/synfig-studio/trunk/src/gtkmm/widget_defaults.cpp b/synfig-studio/trunk/src/gtkmm/widget_defaults.cpp index cf2f864..f36176f 100644 --- a/synfig-studio/trunk/src/gtkmm/widget_defaults.cpp +++ b/synfig-studio/trunk/src/gtkmm/widget_defaults.cpp @@ -284,10 +284,10 @@ Widget_Defaults::Widget_Defaults() widget_interpolation->set_param_desc( ParamDesc("interpolation") .set_hint("enum") - .add_enum_value(INTERPOLATION_TCB,"auto",_("TCB")) - .add_enum_value(INTERPOLATION_CONSTANT,"constant",_("Constant")) - .add_enum_value(INTERPOLATION_HALT,"ease",_("Ease in/out")) - .add_enum_value(INTERPOLATION_LINEAR,"linear",_("Linear")) + .add_enum_value(INTERPOLATION_TCB,"auto",_("_TCB")) + .add_enum_value(INTERPOLATION_CONSTANT,"constant",_("_Constant")) + .add_enum_value(INTERPOLATION_HALT,"ease",_("_Ease In/Out")) + .add_enum_value(INTERPOLATION_LINEAR,"linear",_("_Linear")) ); attach(*widget_interpolation,0, 2, 5, 6, Gtk::EXPAND|Gtk::FILL, Gtk::SHRINK|Gtk::FILL, 1, 1); tooltips_.set_tip(*widget_interpolation,_("Default Interpolation"));