Ide: Added missing tooltips in macro manager.

git-svn-id: svn://ultimatepp.org/upp/trunk@11757 f0d560ea-af0d-0410-9eb7-867de7ffcac7
This commit is contained in:
klugier 2018-02-01 21:00:20 +00:00
parent d1723f9c62
commit a4c85df58c

View file

@ -69,6 +69,12 @@ void MacroManagerWindow::InitButtons()
newGlobalLabel << [=] { OnNewMacroFile(); };
importGlobalsLabel << [=] { OnImport(); };
exportGlobalsLabel << [=] { OnExport(0); };
editLabel.Tip(t_("Edit currently selected macro inside TheIde.."));
exportLabel.Tip(t_("Export selected macro file.."));
newGlobalLabel.Tip(t_("Create file that stores global macros.."));
importGlobalsLabel.Tip(t_("Install file/files containing macros.."));
exportGlobalsLabel.Tip(t_("Export all global macros files.."));
}
void MacroManagerWindow::InitEvents()