Skip to content

Commit a1de6f8

Browse files
committed
fix: add trailing workspace columns to player mode progress
1 parent 661cd7b commit a1de6f8

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

scripts/control_draw/control_draw.gml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2202,7 +2202,7 @@ function control_draw() {
22022202

22032203
if (isplayer) {
22042204
if (!dropmode) {
2205-
marker_pos = draw_dragbar(marker_pos, enda, rw / 2 - 200, rh / 2 + 25, 400, 1, time_str((clamp(((mouse_x - (rw / 2 - 200)) / 400) * enda, 0, enda)) / tempo), condstr(language != 1, "Song Position", "当前位置"), 0)
2205+
marker_pos = draw_dragbar(marker_pos, enda + totalcols, rw / 2 - 200, rh / 2 + 25, 400, 1, time_str((clamp(((mouse_x - (rw / 2 - 200)) / 400) * enda, 0, enda)) / tempo), condstr(language != 1, "Song Position", "当前位置"), 0)
22062206
draw_set_halign(fa_left)
22072207
draw_theme_color()
22082208
if (blackout) draw_set_color(c_white)
@@ -2212,7 +2212,7 @@ function control_draw() {
22122212
dropalpha = 1
22132213
} else {
22142214
draw_set_alpha(dropalpha)
2215-
marker_pos = draw_dragbar(marker_pos, enda, 93 - 84 + 100, 52 + 15, 400, 1, time_str((clamp(((mouse_x - (93 - 84 + 100)) / 400) * enda, 0, enda)) / tempo), condstr(language != 1, "Song Position", "当前位置"), 0)
2215+
marker_pos = draw_dragbar(marker_pos, enda + totalcols, 93 - 84 + 100, 52 + 15, 400, 1, time_str((clamp(((mouse_x - (93 - 84 + 100)) / 400) * enda, 0, enda)) / tempo), condstr(language != 1, "Song Position", "当前位置"), 0)
22162216
draw_set_alpha(1)
22172217
if (mouse_x != mouse_xprev || mouse_y != mouse_yprev || mouse_rectangle(0, 0, 530, 90) || window != 0) {
22182218
dropalpha = 1

0 commit comments

Comments
 (0)