Skip to content

Commit

Permalink
Fixed track names not showing.
Browse files Browse the repository at this point in the history
  • Loading branch information
HielkeMaps committed Mar 20, 2019
1 parent d060f08 commit 7ad9007
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions scripts/control_draw/control_draw.gml
Original file line number Diff line number Diff line change
Expand Up @@ -623,10 +623,11 @@ for (b = 0; b < totalrows; b += 1) {
m = mouse_rectangle(x1 + 10, y1 + 10, 75, 13)
popup_set(x1 + 10, y1 + 10, 75, 13, "The name for this layer")

layername[startb + b] = draw_text_edit(100 + startb + b, layername[startb + b], x1 + 11, y1 + 8, 72, 14, 1, 0)
draw_set_font(fnt_small)
layername[startb + b] = draw_text_edit(100 + startb + b, layername[startb + b], x1 + 11, y1 + 10, 72, 14, 1, 0)
if (layername[startb + b] = "") {
draw_set_color(c_gray)
draw_text(x1 + 11, y1 + 9, "Layer " + string(startb + b + 1))
draw_text(x1 + 11, y1 + 10, "Layer " + string(startb + b + 1))
}
draw_set_color(0)
// Vol
Expand Down

0 comments on commit 7ad9007

Please sign in to comment.