aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMutantAura <44103205+MutantAura@users.noreply.github.com>2022-07-24 18:50:06 +0100
committerGitHub <noreply@github.com>2022-07-24 14:50:06 -0300
commit31b8d413d510820282a1b23e94d454fca78c509f (patch)
tree845d9d3e8f09685783aad4fb3beb9465156feef6
parent6e02cac952f1a9a34d2777199dde657eba0784e6 (diff)
Change MenuHeaders to embedded textblocks (#3469)1.1.188
-rw-r--r--Ryujinx.Ava/Ui/Windows/MainWindow.axaml14
1 files changed, 10 insertions, 4 deletions
diff --git a/Ryujinx.Ava/Ui/Windows/MainWindow.axaml b/Ryujinx.Ava/Ui/Windows/MainWindow.axaml
index f02cd001..52874319 100644
--- a/Ryujinx.Ava/Ui/Windows/MainWindow.axaml
+++ b/Ryujinx.Ava/Ui/Windows/MainWindow.axaml
@@ -111,14 +111,20 @@
Command="{ReflectionBinding ToggleFullscreen}"
Header="{locale:Locale MenuBarOptionsToggleFullscreen}"
InputGesture="F11" />
- <MenuItem Header="{locale:Locale MenuBarOptionsStartGamesInFullscreen}">
+ <MenuItem>
<MenuItem.Icon>
- <CheckBox IsChecked="{Binding StartGamesInFullscreen, Mode=TwoWay}" />
+ <CheckBox IsChecked="{Binding StartGamesInFullscreen, Mode=TwoWay}"
+ MinWidth="250">
+ <TextBlock Text="{locale:Locale MenuBarOptionsStartGamesInFullscreen}"/>
+ </CheckBox>
</MenuItem.Icon>
</MenuItem>
- <MenuItem Header="{locale:Locale MenuBarOptionsShowConsole}" IsVisible="{Binding ShowConsoleVisible}">
+ <MenuItem IsVisible="{Binding ShowConsoleVisible}">
<MenuItem.Icon>
- <CheckBox IsChecked="{Binding ShowConsole, Mode=TwoWay}" />
+ <CheckBox IsChecked="{Binding ShowConsole, Mode=TwoWay}"
+ MinWidth="250">
+ <TextBlock Text="{locale:Locale MenuBarOptionsShowConsole}"/>
+ </CheckBox>
</MenuItem.Icon>
</MenuItem>
<Separator />