Fixing the window title bar.
This commit is contained in:
parent
05e5af32a5
commit
e2e45b46fd
2 changed files with 5 additions and 1 deletions
|
|
@ -41,6 +41,7 @@ using MatterHackers.MatterControl.PartPreviewWindow;
|
|||
using MatterHackers.MatterControl.PluginSystem;
|
||||
using MatterHackers.MatterControl.PrintQueue;
|
||||
using MatterHackers.MatterControl.SlicerConfiguration;
|
||||
using MatterHackers.MatterControl.SettingsManagement;
|
||||
using MatterHackers.VectorMath;
|
||||
|
||||
namespace MatterHackers.MatterControl
|
||||
|
|
@ -133,7 +134,8 @@ namespace MatterHackers.MatterControl
|
|||
this.AnchorAll();
|
||||
|
||||
UseOpenGL = true;
|
||||
Title = "MatterControl 1.1";
|
||||
string version = "1.1";
|
||||
Title = "MatterControl{0} {1}".FormatWith(OemSettings.Instance.WindowTitleExtra, version);
|
||||
|
||||
ActivePrinterProfile.CheckForAndDoAutoConnect();
|
||||
UiThread.RunOnIdle(CheckOnPrinter);
|
||||
|
|
|
|||
|
|
@ -30,6 +30,8 @@ namespace MatterHackers.MatterControl.SettingsManagement
|
|||
|
||||
public string AffiliateCode = "";
|
||||
|
||||
public string WindowTitleExtra = "";
|
||||
|
||||
public bool ShowShopButton = true;
|
||||
|
||||
List<string> printerWhiteList = new List<string>();
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue