diff --git a/shell/windows/LayersShell/MainWindow.xaml.cs b/shell/windows/LayersShell/MainWindow.xaml.cs index bb1d343..fcfa592 100644 --- a/shell/windows/LayersShell/MainWindow.xaml.cs +++ b/shell/windows/LayersShell/MainWindow.xaml.cs @@ -45,16 +45,10 @@ public sealed partial class MainWindow : Window App.Log($"presenter kind: {appWindow.Presenter?.Kind}"); if (appWindow.Presenter is OverlappedPresenter op) { - App.Log("op: set IsAlwaysOnTop"); op.IsAlwaysOnTop = true; - App.Log("op: set IsResizable"); op.IsResizable = true; - App.Log("op: set IsMaximizable"); op.IsMaximizable = false; - App.Log("op: set IsMinimizable"); op.IsMinimizable = true; - App.Log("op: SetBorderAndTitleBar"); - op.SetBorderAndTitleBar(hasBorder: false, hasTitleBar: false); App.Log("OverlappedPresenter configured"); } App.Log("before ResizeClient");