Fix of the merge - missing Undo / Redo toolbar buttons.
This commit is contained in:
parent
ab7ecc1819
commit
a492360d19
@ -3647,9 +3647,7 @@ bool GLCanvas3D::_init_toolbar()
|
|||||||
return false;
|
return false;
|
||||||
|
|
||||||
item.name = "undo";
|
item.name = "undo";
|
||||||
#if ENABLE_SVG_ICONS
|
|
||||||
item.icon_filename = "undo_toolbar.svg";
|
item.icon_filename = "undo_toolbar.svg";
|
||||||
#endif // ENABLE_SVG_ICONS
|
|
||||||
item.tooltip = _utf8(L("Undo")) + " [" + GUI::shortkey_ctrl_prefix() + "Z]";
|
item.tooltip = _utf8(L("Undo")) + " [" + GUI::shortkey_ctrl_prefix() + "Z]";
|
||||||
item.sprite_id = 11;
|
item.sprite_id = 11;
|
||||||
item.left.toggable = false;
|
item.left.toggable = false;
|
||||||
@ -3663,9 +3661,7 @@ bool GLCanvas3D::_init_toolbar()
|
|||||||
return false;
|
return false;
|
||||||
|
|
||||||
item.name = "redo";
|
item.name = "redo";
|
||||||
#if ENABLE_SVG_ICONS
|
|
||||||
item.icon_filename = "redo_toolbar.svg";
|
item.icon_filename = "redo_toolbar.svg";
|
||||||
#endif // ENABLE_SVG_ICONS
|
|
||||||
item.tooltip = _utf8(L("Redo")) + " [" + GUI::shortkey_ctrl_prefix() + "Y]";
|
item.tooltip = _utf8(L("Redo")) + " [" + GUI::shortkey_ctrl_prefix() + "Y]";
|
||||||
item.sprite_id = 12;
|
item.sprite_id = 12;
|
||||||
item.left.action_callback = [this]() { post_event(SimpleEvent(EVT_GLCANVAS_REDO)); };
|
item.left.action_callback = [this]() { post_event(SimpleEvent(EVT_GLCANVAS_REDO)); };
|
||||||
|
Loading…
Reference in New Issue
Block a user