diff options
author | Sam H <[email protected]> | 2018-06-13 22:27:27 +0100 |
---|---|---|
committer | Scott <[email protected]> | 2018-06-14 19:39:58 +0100 |
commit | 99162805269b5c5804d2a2cd099c599f30599c6a (patch) | |
tree | 36a251d1d6748a0e157b4434d1d694c44f5c008c /win/CS/HandBrakeWPF/Views/MainView.xaml | |
parent | 2ae6f63d2e6991e5eda7f1e385decd3909b7bf18 (diff) |
WinGui: Make MenuItems the same height as the Menu
Diffstat (limited to 'win/CS/HandBrakeWPF/Views/MainView.xaml')
-rw-r--r-- | win/CS/HandBrakeWPF/Views/MainView.xaml | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/win/CS/HandBrakeWPF/Views/MainView.xaml b/win/CS/HandBrakeWPF/Views/MainView.xaml index f3bf10401..9a45bfdd5 100644 --- a/win/CS/HandBrakeWPF/Views/MainView.xaml +++ b/win/CS/HandBrakeWPF/Views/MainView.xaml @@ -64,6 +64,11 @@ <Menu Height="23"
HorizontalAlignment="Stretch"
VerticalAlignment="Top">
+ <Menu.Resources>
+ <Style TargetType="MenuItem">
+ <Setter Property="Height" Value="23" />
+ </Style>
+ </Menu.Resources>
<MenuItem Header="_File">
<MenuItem Header="{x:Static Properties:ResourcesUI.MainView_SourceOpen}" cal:Message.Attach="[Event Click] = [Action SelectSourceWindow]" InputGestureText="Alt + O" />
<Separator />
|