Skip to content

Commit d3787d2

Browse files
committed
Fix greeting window links separator not showing properly when scaled
1 parent 471cc56 commit d3787d2

2 files changed

Lines changed: 37 additions & 3 deletions

File tree

Minecraft Note Block Studio.yyp

Lines changed: 34 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

scripts/draw_window_greeting/draw_window_greeting.gml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -72,13 +72,13 @@ function draw_window_greeting() {
7272
if (language != 1) draw_text_center(x1 + 132, y1 + 340 + dev_label_offset, "Follow OpenNBS:")
7373
else draw_text_center(x1 + 132, y1 + 340 + dev_label_offset, "TRANSLATE")
7474
draw_text_url(x1 + 80, y1 + 356 + dev_label_offset, "Discord", link_discord)
75-
draw_text(x1 + 104, y1 + 356 + dev_label_offset, "|")
75+
draw_text_dynamic(x1 + 104, y1 + 356 + dev_label_offset, "|")
7676
draw_text_url(x1 + 128, y1 + 356 + dev_label_offset, "Twitter", link_twitter)
77-
draw_text(x1 + 150, y1 + 356 + dev_label_offset, "|")
77+
draw_text_dynamic(x1 + 150, y1 + 356 + dev_label_offset, "|")
7878
draw_text_url(x1 + 180, y1 + 356 + dev_label_offset, "YouTube", link_youtube)
7979

8080
draw_text_url(x1 + 108, y1 + 372 + dev_label_offset, "GitHub", link_github)
81-
draw_text(x1 + 131, y1 + 372 + dev_label_offset, "|")
81+
draw_text_dynamic(x1 + 131, y1 + 372 + dev_label_offset, "|")
8282
draw_text_url(x1 + 156, y1 + 372 + dev_label_offset, "Donate", link_donate)
8383
draw_set_color(c_white)
8484

0 commit comments

Comments
 (0)