From faf7a1d789c84e89353a34556fe1bc7c28be1642 Mon Sep 17 00:00:00 2001 From: bubnikv <bubnikv@gmail.com> Date: Tue, 27 Aug 2019 11:49:46 +0200 Subject: [PATCH] Reworderd undo / redo tooltips --- src/slic3r/GUI/GLCanvas3D.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/slic3r/GUI/GLCanvas3D.cpp b/src/slic3r/GUI/GLCanvas3D.cpp index 4c07550f6..65655b421 100644 --- a/src/slic3r/GUI/GLCanvas3D.cpp +++ b/src/slic3r/GUI/GLCanvas3D.cpp @@ -3712,7 +3712,7 @@ bool GLCanvas3D::_init_undoredo_toolbar() if (can_undo) { std::string action; wxGetApp().plater()->undo_redo_topmost_string_getter(true, action); - new_additional_tooltip = (boost::format(_utf8(L("Undo action: %1%"))) % action).str(); + new_additional_tooltip = (boost::format(_utf8(L("Next Undo action: %1%"))) % action).str(); } if (new_additional_tooltip != curr_additional_tooltip) @@ -3744,7 +3744,7 @@ bool GLCanvas3D::_init_undoredo_toolbar() if (can_redo) { std::string action; wxGetApp().plater()->undo_redo_topmost_string_getter(false, action); - new_additional_tooltip = (boost::format(_utf8(L("Redo action: %1%"))) % action).str(); + new_additional_tooltip = (boost::format(_utf8(L("Next Redo action: %1%"))) % action).str(); } if (new_additional_tooltip != curr_additional_tooltip)