Browse Source

Close application from fullscreen when pressing `Esc` #269

Ruben 2 weeks ago
parent
commit
58ec25bf89
1 changed files with 0 additions and 7 deletions
  1. 0 7
      src/PicView.Avalonia/UI/DialogManager.cs

+ 0 - 7
src/PicView.Avalonia/UI/DialogManager.cs

@@ -37,13 +37,6 @@ public static class DialogManager
             Slideshow.StopSlideshow(vm);
             return;
         }
-
-        // Handle fullscreen
-        if (Settings.WindowProperties.Fullscreen)
-        {
-            await vm.PlatformWindowService.MaximizeRestore(false);
-            return;
-        }
         
         // Handle window close
         await Dispatcher.UIThread.InvokeAsync(CloseWithOptionalDialog);