Change typename to reflect new shared platform role
This commit is contained in:
parent
6441cc92bd
commit
5bbe550539
6 changed files with 7 additions and 7 deletions
|
|
@ -1514,7 +1514,7 @@ namespace MatterHackers.MatterControl
|
|||
{
|
||||
timer = Stopwatch.StartNew();
|
||||
|
||||
var systemWindow = new DesktopRootSystemWindow(width, height)
|
||||
var systemWindow = new RootSystemWindow(width, height)
|
||||
{
|
||||
BackgroundColor = Color.DarkGray
|
||||
};
|
||||
|
|
|
|||
|
|
@ -135,7 +135,7 @@ namespace MatterHackers.MatterControl
|
|||
break;
|
||||
|
||||
case "SHOW_MEMORY":
|
||||
DesktopRootSystemWindow.ShowMemoryUsed = true;
|
||||
RootSystemWindow.ShowMemoryUsed = true;
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -83,7 +83,6 @@
|
|||
<Compile Include="ActionBar\TemperatureWidgetBed.cs" />
|
||||
<Compile Include="ApplicationView\OemProfileDictionary.cs" />
|
||||
<Compile Include="ApplicationView\WindowsPlatformsFeatures.cs" />
|
||||
<Compile Include="DesktopRootSystemWindow.cs" />
|
||||
<Compile Include="PartPreviewWindow\View3D\PrinterBar\PrintPopupMenu.cs" />
|
||||
<Compile Include="PartPreviewWindow\View3D\PrinterBar\SliceButton.cs" />
|
||||
<Compile Include="PartPreviewWindow\View3D\PrinterBar\PrinterConnectButton.cs" />
|
||||
|
|
@ -152,6 +151,7 @@
|
|||
<Compile Include="PrinterControls\MacroDetailPage.cs" />
|
||||
<Compile Include="PrinterControls\MacroListPage.cs" />
|
||||
<Compile Include="PrinterControls\PrinterConnections\PrinterSetup.cs" />
|
||||
<Compile Include="RootSystemWindow.cs" />
|
||||
<Compile Include="SetupWizard\DialogWindow.cs" />
|
||||
<Compile Include="Utilities\InspectForm.cs" Condition="'$(Configuration)' == 'Debug'">
|
||||
<SubType>Form</SubType>
|
||||
|
|
|
|||
|
|
@ -50,7 +50,7 @@ namespace MatterHackers.MatterControl
|
|||
|
||||
// Get startup bounds from MatterControl and construct system window
|
||||
//var systemWindow = new DesktopMainWindow(400, 200)
|
||||
var (width, height) = DesktopRootSystemWindow.GetStartupBounds();
|
||||
var (width, height) = RootSystemWindow.GetStartupBounds();
|
||||
|
||||
Application.LoadRootWindow(width, height);
|
||||
}
|
||||
|
|
|
|||
|
|
@ -44,7 +44,7 @@ using MatterHackers.VectorMath;
|
|||
|
||||
namespace MatterHackers.MatterControl
|
||||
{
|
||||
public class DesktopRootSystemWindow : SystemWindow
|
||||
public class RootSystemWindow : SystemWindow
|
||||
{
|
||||
private static Vector2 minSize { get; set; } = new Vector2(600, 600);
|
||||
|
||||
|
|
@ -60,7 +60,7 @@ namespace MatterHackers.MatterControl
|
|||
|
||||
private bool exitDialogOpen = false;
|
||||
|
||||
public DesktopRootSystemWindow(double width, double height)
|
||||
public RootSystemWindow(double width, double height)
|
||||
: base(width, height)
|
||||
{
|
||||
this.Name = "MatterControl";
|
||||
|
|
@ -592,7 +592,7 @@ namespace MatterHackers.MatterControl.Tests.Automation
|
|||
AutomationRunner.TimeToMoveMouse = config.TimeToMoveMouse;
|
||||
AutomationRunner.UpDelaySeconds = config.MouseUpDelay;
|
||||
|
||||
rootSystemWindow = new DesktopRootSystemWindow(overrideWidth, overrideHeight);
|
||||
rootSystemWindow = new RootSystemWindow(overrideWidth, overrideHeight);
|
||||
|
||||
await AutomationRunner.ShowWindowAndExecuteTests(
|
||||
rootSystemWindow,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue