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 5e0cdcc commit b474f84Copy full SHA for b474f84
src/Microsoft.PowerShell.ConsoleGuiTools/ConsoleGui.cs
@@ -141,11 +141,16 @@ private Window CreateTopLevelWindow()
141
{
142
X = _applicationData.MinUI ? -1 : 0,
143
Y = _applicationData.MinUI ? -1 : 0,
144
+
145
// By using Dim.Fill(), it will automatically resize without manual intervention
146
Width = Dim.Fill(_applicationData.MinUI ? -1 : 0),
147
Height = Dim.Fill(_applicationData.MinUI ? -1 : 1)
148
};
-
149
150
+ if (_applicationData.MinUI) {
151
+ win.Border.BorderStyle = BorderStyle.None;
152
+ }
153
154
Application.Top.Add(win);
155
return win;
156
}
0 commit comments