Skip to content

Commit

Permalink
Fix focus box around color schemes combo box (#12439)
Browse files Browse the repository at this point in the history
The focus box around the color schemes combo box was getting cut off, this change adds a small margin to the stackpanel to allow space for the focus box

## PR Checklist
* [x] Closes #12328
  • Loading branch information
PankajBhojwani authored Feb 8, 2022
1 parent d0daab6 commit f5f0712
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/cascadia/TerminalSettingsEditor/ColorSchemes.xaml
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,8 @@
Spacing="24">

<!-- Select Color and Add New Button -->
<StackPanel Orientation="Horizontal">
<StackPanel Margin="0,5,0,0"
Orientation="Horizontal">

<StackPanel Orientation="Horizontal"
Visibility="{x:Bind local:Converters.InvertedBooleanToVisibility(IsRenaming), Mode=OneWay}">
Expand Down

0 comments on commit f5f0712

Please sign in to comment.