Skip to content

Commit 15cf718

Browse files
committed
Fix song time signature being positioned incorrectly
1 parent a149126 commit 15cf718

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

scripts/draw_window_properties/draw_window_properties.gml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -63,9 +63,9 @@ popup_set_window(x1 + 70, y1 + 310, 180, 16, "The amount of minutes between each
6363

6464
draw_theme_color()
6565
draw_text(x1 + 32, y1 + 348, "Time signature:")
66-
timesignature = median(2, draw_dragvalue(3, x1 + 120, y1 + 358, timesignature, 1), 8)
67-
draw_text(x1 + 120 + string_width(string(timesignature)), y1 + 358, " / 4")
68-
popup_set_window(x1 + 32, y1 + 356, 110, 18, "The time signature of the song.")
66+
timesignature = median(2, draw_dragvalue(3, x1 + 120, y1 + 348, timesignature, 1), 8)
67+
draw_text(x1 + 120 + string_width(string(timesignature)), y1 + 348, " / 4")
68+
popup_set_window(x1 + 32, y1 + 346, 110, 18, "The time signature of the song.")
6969

7070
draw_text(x1 + 232, y1 + 348, "Loop start tick:")
7171
loopstart = median(0, draw_dragvalue(7, x1 + 320, y1 + 348, loopstart, 0.5), obj_controller.enda)

0 commit comments

Comments
 (0)