mirror of
https://github.com/Ryujinx-NX/Ryujinx.git
synced 2024-11-14 13:07:41 -07:00
Ava UI: Content Dialog Fixes (#6482)
* Don’t use ContentDialogHelper when not necessary * Remove `ExtendClientAreaToDecorationsHint`
This commit is contained in:
parent
50bdda5baa
commit
bb8c5ebae1
@ -9,7 +9,6 @@ namespace Ryujinx.Ava.UI.Windows
|
||||
{
|
||||
InitializeComponent();
|
||||
|
||||
ExtendClientAreaToDecorationsHint = true;
|
||||
TransparencyLevelHint = new[] { WindowTransparencyLevel.Transparent };
|
||||
WindowStartupLocation = WindowStartupLocation.Manual;
|
||||
SystemDecorations = SystemDecorations.None;
|
||||
|
@ -47,7 +47,7 @@ namespace Ryujinx.Ava.UI.Windows
|
||||
|
||||
contentDialog.Styles.Add(bottomBorder);
|
||||
|
||||
await ContentDialogHelper.ShowAsync(contentDialog);
|
||||
await contentDialog.ShowAsync();
|
||||
}
|
||||
|
||||
private void SaveAndClose(object sender, RoutedEventArgs routedEventArgs)
|
||||
|
@ -49,7 +49,7 @@ namespace Ryujinx.Ava.UI.Windows
|
||||
|
||||
contentDialog.Styles.Add(bottomBorder);
|
||||
|
||||
await ContentDialogHelper.ShowAsync(contentDialog);
|
||||
await contentDialog.ShowAsync();
|
||||
}
|
||||
|
||||
private void Close(object sender, RoutedEventArgs e)
|
||||
|
Loading…
Reference in New Issue
Block a user