1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-11-05 00:23:56 +01:00

Bug 1966 - Manage Macros: Import and Export buttons are always inactive.

This commit is contained in:
James Crook
2018-09-03 22:58:57 +01:00
parent 7d0839393b
commit 2758491a4a

View File

@@ -618,8 +618,11 @@ void MacrosWindow::PopulateOrExchange(ShuttleGui & S)
S.Id(AddButtonID).AddButton(_("&New"));
mRemove = S.Id(RemoveButtonID).AddButton(_("Remo&ve"));
mRename = S.Id(RenameButtonID).AddButton(_("&Rename..."));
// Not yet ready for prime time.
#if 0
S.Id(ImportButtonID).AddButton(_("I&mport..."))->Enable( false);
S.Id(ExportButtonID).AddButton(_("E&xport..."))->Enable( false);
#endif
}
S.EndVerticalLay();
}