Skip to content

Commit 8fac98d

Browse files
committed
Fix HotkeyDialog Button Size
1 parent 219e003 commit 8fac98d

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

Flow.Launcher/HotkeyControlDialog.xaml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -125,12 +125,12 @@
125125
BorderThickness="0 1 0 0"
126126
CornerRadius="0 0 8 8">
127127
<StackPanel
128-
Margin="10"
128+
Margin="10 9 10 10"
129129
HorizontalAlignment="Center"
130130
Orientation="Horizontal">
131131
<Button
132132
x:Name="OverwriteBtn"
133-
Height="30"
133+
MinHeight="36"
134134
MinWidth="100"
135135
Margin="0 0 4 0"
136136
Click="Overwrite"
@@ -139,26 +139,26 @@
139139
Visibility="Collapsed" />
140140
<Button
141141
x:Name="SaveBtn"
142-
Height="30"
142+
MinHeight="36"
143143
MinWidth="100"
144144
Margin="0 0 4 0"
145145
Click="Save"
146146
Content="{DynamicResource commonSave}"
147147
Style="{StaticResource AccentButtonStyle}" />
148148
<Button
149-
Height="30"
149+
MinHeight="36"
150150
MinWidth="100"
151151
Margin="4 0 4 0"
152152
Click="Reset"
153153
Content="{DynamicResource commonReset}" />
154154
<Button
155-
Height="30"
155+
MinHeight="36"
156156
MinWidth="100"
157157
Margin="4 0 4 0"
158158
Click="Delete"
159159
Content="{DynamicResource commonDelete}" />
160160
<Button
161-
Height="30"
161+
MinHeight="36"
162162
MinWidth="100"
163163
Margin="4 0 0 0"
164164
Click="Cancel"

0 commit comments

Comments
 (0)