We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 582ed2e commit a24e49eCopy full SHA for a24e49e
2 files changed
src/TSMapEditor/UI/UIManager.cs
@@ -335,6 +335,9 @@ private void InitNotificationManager()
335
336
private void SetNotificationManagerSizeAndPosition()
337
{
338
+ if (notificationManager == null)
339
+ return;
340
+
341
notificationManager.X = editorSidebar.X + Constants.UIEmptySideSpace;
342
notificationManager.Width = WindowManager.RenderResolutionX - (notificationManager.X * 2);
343
notificationManager.Y = 100;
src/TSMapEditor/UI/Windows/HousesWindow.cs
@@ -5,7 +5,6 @@
5
using System;
6
using System.Globalization;
7
using System.Linq;
8
-using TSMapEditor.Initialization;
9
using TSMapEditor.Models;
10
using TSMapEditor.UI.Controls;
11
0 commit comments