File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -36,7 +36,7 @@ public override Task ShowKeyboardAsync()
36
36
37
37
public override OverlayBox CreateOverlayBox ( )
38
38
{
39
- if ( Utils . TryGetEnvironmentVariable ( "XALIA_LAYERED_BOX" , out var value ) &&
39
+ if ( ! Utils . TryGetEnvironmentVariable ( "XALIA_LAYERED_BOX" , out var value ) ||
40
40
value != "0" )
41
41
return new Win32LayeredBox ( this ) ;
42
42
return base . CreateOverlayBox ( ) ;
Original file line number Diff line number Diff line change @@ -48,7 +48,7 @@ public static WindowingSystem Instance
48
48
49
49
public virtual OverlayBox CreateOverlayBox ( )
50
50
{
51
- if ( Utils . TryGetEnvironmentVariable ( "XALIA_SPLIT_BOX" , out var value ) &&
51
+ if ( ! Utils . TryGetEnvironmentVariable ( "XALIA_SPLIT_BOX" , out var value ) ||
52
52
value != "0" )
53
53
return new SplitOverlayBox ( this ) ;
54
54
return new SdlOverlayBox ( this ) ;
You can’t perform that action at this time.
0 commit comments