Skip to content

Commit 6d2c7b0

Browse files
committed
Update Button width for responsive design
Modified Button to use auto width with a minimum width of 100. This change allows the button to grow when keywords do not fit.
1 parent c4402c6 commit 6d2c7b0

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

Flow.Launcher/Resources/Controls/InstalledPluginDisplayKeyword.xaml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,8 @@
3636
Text="{DynamicResource actionKeywords}" />
3737
<!-- Here Margin="0 -4.5 0 -4.5" is to remove redundant top bottom margin from Margin="{StaticResource SettingPanelMargin}" -->
3838
<Button
39-
Width="100"
39+
Width="auto"
40+
MinWidth="100"
4041
Margin="0 -4.5 0 -4.5"
4142
HorizontalAlignment="Right"
4243
Command="{Binding SetActionKeywordsCommand}"

0 commit comments

Comments
 (0)