mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2024-11-10 22:26:39 +00:00
Change MenuHeaders to embedded textblocks (#3469)
This commit is contained in:
parent
6e02cac952
commit
31b8d413d5
1 changed files with 10 additions and 4 deletions
|
@ -111,14 +111,20 @@
|
||||||
Command="{ReflectionBinding ToggleFullscreen}"
|
Command="{ReflectionBinding ToggleFullscreen}"
|
||||||
Header="{locale:Locale MenuBarOptionsToggleFullscreen}"
|
Header="{locale:Locale MenuBarOptionsToggleFullscreen}"
|
||||||
InputGesture="F11" />
|
InputGesture="F11" />
|
||||||
<MenuItem Header="{locale:Locale MenuBarOptionsStartGamesInFullscreen}">
|
<MenuItem>
|
||||||
<MenuItem.Icon>
|
<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.Icon>
|
||||||
</MenuItem>
|
</MenuItem>
|
||||||
<MenuItem Header="{locale:Locale MenuBarOptionsShowConsole}" IsVisible="{Binding ShowConsoleVisible}">
|
<MenuItem IsVisible="{Binding ShowConsoleVisible}">
|
||||||
<MenuItem.Icon>
|
<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.Icon>
|
||||||
</MenuItem>
|
</MenuItem>
|
||||||
<Separator />
|
<Separator />
|
||||||
|
|
Loading…
Reference in a new issue