File tree Expand file tree Collapse file tree 4 files changed +6
-6
lines changed Expand file tree Collapse file tree 4 files changed +6
-6
lines changed Original file line number Diff line number Diff line change 8
8
</PropertyGroup >
9
9
10
10
<ItemGroup >
11
- <PackageReference Include =" Terminal.Gui" Version =" 2.0.0-prealpha.1546 " />
11
+ <PackageReference Include =" Terminal.Gui" Version =" 2.0.0-develop.1566 " />
12
12
</ItemGroup >
13
13
14
14
</Project >
Original file line number Diff line number Diff line change @@ -19,8 +19,8 @@ public static void Main(string[] args)
19
19
. WithParsed < Options > ( o =>
20
20
{
21
21
Editor . Experimental = o . Experimental ;
22
-
23
- Application . Init ( ) ;
22
+
23
+ Application . Init ( null , "v2" ) ;
24
24
var editor = new Editor ( ) ;
25
25
editor . Run ( o ) ;
26
26
} ) ;
Original file line number Diff line number Diff line change 150
150
<PackageReference Include =" Microsoft.Extensions.Configuration.FileExtensions" Version =" 8.0.1" />
151
151
<PackageReference Include =" Microsoft.Extensions.Configuration.Json" Version =" 8.0.0" />
152
152
<PackageReference Include =" NetEscapades.Configuration.Yaml" Version =" 3.1.0" />
153
- <PackageReference Include =" Terminal.Gui" Version =" 2.0.0-prealpha.1546 " />
153
+ <PackageReference Include =" Terminal.Gui" Version =" 2.0.0-develop.1566 " />
154
154
<PackageReference Include =" nlog" Version =" 5.3.3" />
155
155
<PackageReference Include =" Basic.Reference.Assemblies.Net80" Version =" 1.7.7" />
156
156
<PackageReference Include =" System.CodeDom" Version =" 8.0.0" />
Original file line number Diff line number Diff line change @@ -195,9 +195,9 @@ public void Run(Options options)
195
195
/// Tailors redrawing to add overlays (e.g. showing what is selected etc.).
196
196
/// Only runs when a view is open and <see cref="viewBeingEdited"/>.
197
197
/// </summary>
198
- protected override void OnDrawComplete ( )
198
+ protected override void OnDrawComplete ( DrawContext ? context )
199
199
{
200
- base . OnDrawComplete ( ) ;
200
+ base . OnDrawComplete ( context ) ;
201
201
202
202
// if we are not editing a view
203
203
if ( this . viewBeingEdited == null )
You can’t perform that action at this time.
0 commit comments