Skip to content

Commit

Permalink
fix: add input background to example tag and sets lists
Browse files Browse the repository at this point in the history
Signed-off-by: Rachel Powers <508861+Ryex@users.noreply.github.com>
  • Loading branch information
Ryex committed Oct 2, 2024
1 parent 1fd35e2 commit 5a96ee6
Showing 1 changed file with 14 additions and 2 deletions.
16 changes: 14 additions & 2 deletions internal/gui/tag_gen.go
Original file line number Diff line number Diff line change
Expand Up @@ -206,7 +206,13 @@ func (a *App) createTagGenDialog() dialog.Dialog {
widget.NewLabel(lang.X("pathGen.exampleTags.label", "Example Tags")),
),
),
tagsList,
container.NewStack(
&canvas.Rectangle{
FillColor: theme.Color(theme.ColorNameInputBackground),
CornerRadius: 4,
},
tagsList,
),
),
widget.NewSeparator(),
layouts.NewBottomExpandVBox(
Expand All @@ -219,7 +225,13 @@ func (a *App) createTagGenDialog() dialog.Dialog {
widget.NewLabel(lang.X("pathGen.exampleSets.label", "Example sets tag is in")),
),
),
setsList,
container.NewStack(
&canvas.Rectangle{
FillColor: theme.Color(theme.ColorNameInputBackground),
CornerRadius: 4,
},
setsList,
),
),
)

Expand Down

0 comments on commit 5a96ee6

Please sign in to comment.