-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
gui: Fix spinbox ranges to include maximum value
Set range of intensity spinboxes to 0-100 via range(0, 101). Python treats range(0, 5) as [0, 1, 2, 3, 4], verifiable with... > [num for num in range(0, 5)] This fixes the maximum strength being limited to 99%.
- Loading branch information
1 parent
b5b7702
commit 0d5e8b7
Showing
1 changed file
with
3 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters