Made Arrangement = ViewArrangement.Fixed the default for Toplevels

This commit is contained in:
Tig
2024-04-15 17:08:12 -06:00
parent de1a844787
commit 069089ee27
8 changed files with 45 additions and 28 deletions

View File

@@ -809,7 +809,11 @@ public class ApplicationTests
Init ();
// Don't use Dialog here as it has more layout logic. Use Window instead.
var w = new Window { Width = 5, Height = 5 };
var w = new Window
{
Width = 5, Height = 5,
Arrangement = ViewArrangement.Movable
};
((FakeDriver)Application.Driver).SetBufferSize (10, 10);
RunState rs = Application.Begin (w);