diff --git a/TBF/Rig/Output/Printers/Enhanced/PrinterCfgCtrl.cs b/TBF/Rig/Output/Printers/Enhanced/PrinterCfgCtrl.cs index 2c4bceb21..3a2e394cc 100644 --- a/TBF/Rig/Output/Printers/Enhanced/PrinterCfgCtrl.cs +++ b/TBF/Rig/Output/Printers/Enhanced/PrinterCfgCtrl.cs @@ -74,7 +74,6 @@ namespace TBF.Rig.Output.Printers.Enhanced void Localize() { - classNameLabel.Text = config.ClassName; nameLabel.Text = Strings.Name; printerLabel.Text = Strings.Printer; selectPrinterButton.Text = "Select"; @@ -92,7 +91,9 @@ namespace TBF.Rig.Output.Printers.Enhanced void Redraw() { if (config == null) return; /// Control was not loaded, settings were not changed - nameTextBox.Text = config.Name; + + classNameLabel.Text = config.ClassName; + nameTextBox.Text = config.Name; printerComboBox.Text = string.IsNullOrEmpty(config.PrinterName) ? Strings.default_printer : config.PrinterName; templateTextBox.Text = config.Template; orientationComboBox.Text = config.PageOrientation.ToString();