From e409c0699e0a3ff57d7e25fcb0d4042a5826dfa7 Mon Sep 17 00:00:00 2001 From: dooglus Date: Sun, 1 Apr 2007 17:30:25 +0000 Subject: [PATCH] Put the 'redo' button next to the 'undo' button, and before the 2 'clear' buttons, so that both 'undo' and 'redo' are visible when the history dialog is narrow. Edited the labels and tooltips a little, too. git-svn-id: http://svn.voria.com/code@409 1f10aa63-cdf2-0310-b900-c93c546f37ac --- synfig-studio/trunk/src/gtkmm/dock_history.cpp | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/synfig-studio/trunk/src/gtkmm/dock_history.cpp b/synfig-studio/trunk/src/gtkmm/dock_history.cpp index 2a2df11..d1edcfd 100644 --- a/synfig-studio/trunk/src/gtkmm/dock_history.cpp +++ b/synfig-studio/trunk/src/gtkmm/dock_history.cpp @@ -72,8 +72,8 @@ Dock_History::Dock_History(): action_group->add(Gtk::Action::create( "clear-undo", Gtk::StockID("synfig-clear_undo"), - _("Clear the UNDO Stack"), - _("Clear the UNDO Stack") + _("Clear Undo Stack"), + _("Clear the undo stack") ), sigc::mem_fun( *this, @@ -83,8 +83,8 @@ Dock_History::Dock_History(): action_group->add(Gtk::Action::create( "clear-redo", Gtk::StockID("synfig-clear_redo"), - _("Clear the REDO Stack"), - _("Clear the REDO Stack") + _("Clear Redo Stack"), + _("Clear the redo stack") ), sigc::mem_fun( *this, @@ -94,16 +94,16 @@ Dock_History::Dock_History(): action_group->add(Gtk::Action::create( "undo", Gtk::StockID("gtk-undo"), - _("Undo previous action"), - _("Undo previous action") + _("Undo"), + _("Undo the previous action") ), sigc::ptr_fun(studio::App::undo) ); action_group->add(Gtk::Action::create( "redo", Gtk::StockID("gtk-redo"), - _("Redo previous action"), - _("Redo previous action") + _("Redo"), + _("Redo the previously undone action") ), sigc::ptr_fun(studio::App::redo) ); @@ -115,9 +115,9 @@ Dock_History::Dock_History(): "" " " " " + " " " " " " - " " " " "" ; -- 2.7.4