mirror of
https://git.naxdy.org/Mirror/Ryujinx.git
synced 2024-11-15 01:25:25 +00: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();
|
InitializeComponent();
|
||||||
|
|
||||||
ExtendClientAreaToDecorationsHint = true;
|
|
||||||
TransparencyLevelHint = new[] { WindowTransparencyLevel.Transparent };
|
TransparencyLevelHint = new[] { WindowTransparencyLevel.Transparent };
|
||||||
WindowStartupLocation = WindowStartupLocation.Manual;
|
WindowStartupLocation = WindowStartupLocation.Manual;
|
||||||
SystemDecorations = SystemDecorations.None;
|
SystemDecorations = SystemDecorations.None;
|
||||||
|
|
|
@ -47,7 +47,7 @@ namespace Ryujinx.Ava.UI.Windows
|
||||||
|
|
||||||
contentDialog.Styles.Add(bottomBorder);
|
contentDialog.Styles.Add(bottomBorder);
|
||||||
|
|
||||||
await ContentDialogHelper.ShowAsync(contentDialog);
|
await contentDialog.ShowAsync();
|
||||||
}
|
}
|
||||||
|
|
||||||
private void SaveAndClose(object sender, RoutedEventArgs routedEventArgs)
|
private void SaveAndClose(object sender, RoutedEventArgs routedEventArgs)
|
||||||
|
|
|
@ -49,7 +49,7 @@ namespace Ryujinx.Ava.UI.Windows
|
||||||
|
|
||||||
contentDialog.Styles.Add(bottomBorder);
|
contentDialog.Styles.Add(bottomBorder);
|
||||||
|
|
||||||
await ContentDialogHelper.ShowAsync(contentDialog);
|
await contentDialog.ShowAsync();
|
||||||
}
|
}
|
||||||
|
|
||||||
private void Close(object sender, RoutedEventArgs e)
|
private void Close(object sender, RoutedEventArgs e)
|
||||||
|
|
Loading…
Reference in a new issue