mirror of
https://github.com/gui-cs/Terminal.Gui.git
synced 2026-01-01 08:50:25 +01:00
- Made Dim.DimAutoStyle flags.
Made View.ContentSize nullable, so _contentSize can be used to express 'desired contentsize
This commit is contained in:
@@ -211,8 +211,8 @@ public class ConsoleDriverTests
|
||||
driver.SizeChanged += (s, e) =>
|
||||
{
|
||||
wasTerminalResized = true;
|
||||
Assert.Equal (120, e.Size.Width);
|
||||
Assert.Equal (40, e.Size.Height);
|
||||
Assert.Equal (120, e.Size.GetValueOrDefault ().Width);
|
||||
Assert.Equal (40, e.Size.GetValueOrDefault ().Height);
|
||||
};
|
||||
|
||||
Assert.Equal (80, driver.Cols);
|
||||
|
||||
Reference in New Issue
Block a user