Skip to content

Commit 9e8947b

Browse files
committed
Fix line limit settings to allow 0
1 parent 41353e7 commit 9e8947b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

CustomSuggestionService/ContentView.swift

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,10 +41,10 @@ struct ContentView: View {
4141

4242
NumberInput(
4343
value: settings.$maxNumberOfLinesOfSuggestion,
44-
range: 1...Int.max,
44+
range: 0...Int.max,
4545
step: 1
4646
) {
47-
Text("Suggestion Line Limit")
47+
Text("Suggestion Line Limit (0 for unlimited)")
4848
}
4949
}
5050

0 commit comments

Comments
 (0)