Skip to content

Commit

Permalink
feat(tracker/gioui): remove maximum length from unit comment
Browse files Browse the repository at this point in the history
Related to #115.
  • Loading branch information
vsariola committed Nov 2, 2024
1 parent 8074fd7 commit 6337101
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tracker/gioui/unit_editor.go
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ func NewUnitEditor(m *tracker.Model) *UnitEditor {
DisableUnitBtn: NewBoolClickable(m.UnitDisabled().Bool()),
CopyUnitBtn: new(TipClickable),
SelectTypeBtn: new(widget.Clickable),
commentEditor: NewEditor(widget.Editor{SingleLine: true, Submit: true, MaxLen: 16}),
commentEditor: NewEditor(widget.Editor{SingleLine: true, Submit: true}),
sliderList: NewDragList(m.Params().List(), layout.Vertical),
searchList: NewDragList(m.SearchResults().List(), layout.Vertical),
}
Expand Down

0 comments on commit 6337101

Please sign in to comment.