Skip to content

Commit

Permalink
Fixed minimum value of spinbox in Tile Animation Editor
Browse files Browse the repository at this point in the history
0 is a valid value for the duration of an animation frame, so it should
be possible to set the spinbox to 0 in order to apply this value to
multiple selected frames at once.
  • Loading branch information
bjorn committed Sep 30, 2024
1 parent c2aba3e commit 3316db6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions NEWS.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
* Fixed saving/loading of custom properties set on worlds (#4025)
* Fixed crash when accessing a world through a symlink (#4042)
* Fixed error reporting when exporting on the command-line (by Shuhei Nagasawa, #4015)
* Fixed minimum value of spinbox in Tile Animation Editor

### Tiled 1.11.0 (27 June 2024)

Expand Down
2 changes: 1 addition & 1 deletion src/tiled/tileanimationeditor.ui
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
<string> ms</string>
</property>
<property name="minimum">
<number>1</number>
<number>0</number>
</property>
<property name="maximum">
<number>10000</number>
Expand Down

0 comments on commit 3316db6

Please sign in to comment.