removing and mini touch screen ui for now

plan is to get all the functionality working in standard ui then
build out the touch screen ui after that, working to make
a better separation between ui and functionality
This commit is contained in:
LarsBrubaker 2019-12-07 10:25:30 -08:00
parent f6a4445eda
commit fd54d0891c
3 changed files with 23 additions and 40 deletions

View file

@ -148,6 +148,8 @@ namespace MatterHackers.MatterControl
Slicer.RunInProcess = config.GetValue<bool>("MatterControl:Slicer:Debug");
Application.EnableF5Collect = config.GetValue<bool>("MatterControl:Application:EnableF5Collect");
Application.EnableNetworkTraffic = config.GetValue<bool>("MatterControl:Application:EnableNetworkTraffic", true);
Application.MiniTouchScreen.Make = config.GetValue<string>("MatterControl:MiniTouchScreen.Make", "");
Application.MiniTouchScreen.Model = config.GetValue<string>("MatterControl:MiniTouchScreen.Model", "");
// Make sure we have the right working directory as we assume everything relative to the executable.
Directory.SetCurrentDirectory(Path.GetDirectoryName(System.Reflection.Assembly.GetEntryAssembly().Location));