Fixed export windows in Print Queue Item and Library Item from opening multiple times. I also added a test for adding ".stl" and ".gcode" file extensions and did more localization.
This commit is contained in:
parent
34c3d16fd7
commit
86218c4710
19 changed files with 286 additions and 72 deletions
|
|
@ -24,7 +24,10 @@ namespace MatterHackers.MatterControl.PrinterControls.PrinterConnections
|
|||
public ConnectionWindow()
|
||||
: base(350, 500)
|
||||
{
|
||||
Title = new LocalizedString("MatterControl - Connect to Printer").Translated;
|
||||
string connectToPrinterTitle = new LocalizedString("MatterControl").Translated;
|
||||
string connectToPrinterTitleEnd = new LocalizedString ("Connect to Printer").Translated;
|
||||
Title = string.Format("{0} - {1}",connectToPrinterTitle,connectToPrinterTitleEnd);
|
||||
|
||||
if (GetPrinterRecordCount() > 0)
|
||||
{
|
||||
ChangeToChoosePrinter();
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue