Skip to content

Commit 7ad9007

Browse files
committed
Fixed track names not showing.
1 parent d060f08 commit 7ad9007

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

scripts/control_draw/control_draw.gml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -623,10 +623,11 @@ for (b = 0; b < totalrows; b += 1) {
623623
m = mouse_rectangle(x1 + 10, y1 + 10, 75, 13)
624624
popup_set(x1 + 10, y1 + 10, 75, 13, "The name for this layer")
625625

626-
layername[startb + b] = draw_text_edit(100 + startb + b, layername[startb + b], x1 + 11, y1 + 8, 72, 14, 1, 0)
626+
draw_set_font(fnt_small)
627+
layername[startb + b] = draw_text_edit(100 + startb + b, layername[startb + b], x1 + 11, y1 + 10, 72, 14, 1, 0)
627628
if (layername[startb + b] = "") {
628629
draw_set_color(c_gray)
629-
draw_text(x1 + 11, y1 + 9, "Layer " + string(startb + b + 1))
630+
draw_text(x1 + 11, y1 + 10, "Layer " + string(startb + b + 1))
630631
}
631632
draw_set_color(0)
632633
// Vol

0 commit comments

Comments
 (0)