diff --git a/PrinterControls/PrinterConnections/PrinterChooser.cs b/PrinterControls/PrinterConnections/PrinterChooser.cs index c5df4b292..d325d4afc 100644 --- a/PrinterControls/PrinterConnections/PrinterChooser.cs +++ b/PrinterControls/PrinterConnections/PrinterChooser.cs @@ -62,6 +62,12 @@ namespace MatterHackers.MatterControl { string folderName = Path.GetFileName(manufacturerDirectory.TrimEnd(new[] { '/', '\\' })); + // Apply whitelist + if (!printerWhiteListStrings.Contains(folderName)) + { + continue; + } + // Set manufacturer name to the directory name this.manufacturer = Path.GetFileName(manufacturerDirectory);