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 1e1ced1 commit 582ed2eCopy full SHA for 582ed2e
1 file changed
src/TSMapEditor/UI/UIManager.cs
@@ -273,6 +273,7 @@ private void RefreshRenderResolution()
273
Height = WindowManager.RenderResolutionY;
274
275
Parser.Instance.RefreshResolutionConstants(WindowManager);
276
+ SetNotificationManagerSizeAndPosition();
277
}
278
279
@@ -329,6 +330,11 @@ private void InitMapView()
329
330
private void InitNotificationManager()
331
{
332
notificationManager = new NotificationManager(WindowManager);
333
334
+ }
335
+
336
+ private void SetNotificationManagerSizeAndPosition()
337
+ {
338
notificationManager.X = editorSidebar.X + Constants.UIEmptySideSpace;
339
notificationManager.Width = WindowManager.RenderResolutionX - (notificationManager.X * 2);
340
notificationManager.Y = 100;
0 commit comments