Don't take empty extensions.
This commit is contained in:
parent
f8c1a7a8bc
commit
f43860c00f
11 changed files with 35 additions and 18 deletions
|
|
@ -24,7 +24,8 @@ namespace MatterHackers.MatterControl
|
|||
return new TupleList<string, Func<bool>>
|
||||
{
|
||||
{"Add Printer".Localize(), addPrinter_Click},
|
||||
{"Add File".Localize(), importFile_Click},
|
||||
{"Add File To Queue".Localize(), importFile_Click},
|
||||
{"Add Folder To Library".Localize(), addFolderToLibrar_Click},
|
||||
{"------------------------", nothing_Click},
|
||||
{"Exit".Localize(), exit_Click},
|
||||
};
|
||||
|
|
@ -35,6 +36,12 @@ namespace MatterHackers.MatterControl
|
|||
return true;
|
||||
}
|
||||
|
||||
private bool addFolderToLibrar_Click()
|
||||
{
|
||||
//AddCollectionToLibrary(string collectionName);
|
||||
return true;
|
||||
}
|
||||
|
||||
private bool addPrinter_Click()
|
||||
{
|
||||
UiThread.RunOnIdle(ConnectionWindow.Show);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue