mirror of
https://github.com/gui-cs/Terminal.Gui.git
synced 2025-12-27 00:07:58 +01:00
Refactored Application into smaller files.
Made Application #nullable enable
This commit is contained in:
@@ -451,7 +451,7 @@ ssb
|
||||
[SetupFakeDriver]
|
||||
public void FillRemaining_True_False ()
|
||||
{
|
||||
((FakeDriver)Application.Driver).SetBufferSize (22, 5);
|
||||
((FakeDriver)Application.Driver!).SetBufferSize (22, 5);
|
||||
|
||||
Attribute [] attrs =
|
||||
{
|
||||
@@ -6041,7 +6041,7 @@ B")]
|
||||
Text = text
|
||||
};
|
||||
|
||||
Application.Driver.FillRect (new Rectangle (0, 0, 7, 7), (Rune)'*');
|
||||
Application.Driver?.FillRect (new Rectangle (0, 0, 7, 7), (Rune)'*');
|
||||
tf.Draw (new Rectangle (0, 0, 7, 7), Attribute.Default, Attribute.Default);
|
||||
TestHelpers.AssertDriverContentsWithFrameAre (expectedText, _output);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user