Skip to content

Commit c38086a

Browse files
bordingdanielmarbach
authored andcommitted
Change window ordering to put Platform first
1 parent 58c1acc commit c38086a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/MonitoringDemo/Program.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,17 +19,17 @@
1919
var menuBarItems = new List<MenuBarItem>();
2020

2121
ProcessWindow[] windows = [];
22-
var clientWindow = CreateWindow("ClientUI", "ClientUI", "_ClientUI", false, 10000, cancellationToken);
2322
var platformWindow = CreateWindow("Platform", "PlatformLauncher", "_Platform", true, 10010, cancellationToken);
23+
var clientWindow = CreateWindow("ClientUI", "ClientUI", "_ClientUI", false, 10000, cancellationToken);
2424
var billingWindow = CreateWindow("Billing", "Billing", "_Billing", false, 10020, cancellationToken);
2525
var shippingWindow = CreateWindow("Shipping", "Shipping", "S_hipping", false, 10030, cancellationToken);
2626
var salesWindow = CreateWindow("Sales", "Sales", "_Sales", false, 10040, cancellationToken);
2727

2828
windows = [
2929
platformWindow,
30+
clientWindow,
3031
billingWindow,
3132
shippingWindow,
32-
clientWindow,
3333
salesWindow
3434
];
3535

0 commit comments

Comments
 (0)