Przeglądaj źródła

Fixes #1043. The menu separator is being printed in the wrong place.

BDisp 4 lat temu
rodzic
commit
8725c3f461
1 zmienionych plików z 1 dodań i 1 usunięć
  1. 1 1
      Terminal.Gui/Views/Menu.cs

+ 1 - 1
Terminal.Gui/Views/Menu.cs

@@ -453,7 +453,7 @@ namespace Terminal.Gui {
 						Driver.AddRune (' ');
 
 				if (item == null) {
-					Move (Frame.Right - 1, i + 1);
+					Move (Frame.Width - 1, i + 1);
 					Driver.AddRune (Driver.RightTee);
 					continue;
 				}