Skip to content

Commit e54ded0

Browse files
committed
Small text and legibility fixes
- Fix inconsistent use of title case throughout the interface - Add ellipses on the macros that open a new window - Implement menu item and keyboard shortcut for the 'Set pitch' macro - Improved look of warning text for Stagger and Tremolo to make it clearer - Fixed Volume LFO being called Velocity/Volume in different places - Reworded some stuff here and there to make it clearer
1 parent 1de3da0 commit e54ded0

File tree

14 files changed

+130
-96
lines changed

14 files changed

+130
-96
lines changed

scripts/control_draw/control_draw.gml

Lines changed: 35 additions & 32 deletions
Original file line numberDiff line numberDiff line change
@@ -395,20 +395,21 @@ if (sela > -1 && selb > -1 && window = 0 && cursmarker = 0 && clickinarea = 1) {
395395
inactive(selected = 0 || selection_l = 0) + "Expand selection|"+
396396
inactive(selected = 0 || selection_l = 0) + "Compress selection|"+
397397
inactive(selected = 0 || selection_l = 0) + "Macros...|\\||"+
398-
"Ctrl+Shift+A$Tremolo|"+
399-
"Ctrl+Shift+S$Stereo|"+
400-
"Ctrl+Shift+D$Arpeggio|"+
401-
"Ctrl+Shift+F$Portamento|"+
398+
"Ctrl+Shift+A$Tremolo...|"+
399+
"Ctrl+Shift+S$Stereo...|"+
400+
"Ctrl+Shift+D$Arpeggio...|"+
401+
"Ctrl+Shift+F$Portamento...|"+
402402
"Ctrl+Shift+G$Vibrato|"+
403-
"Ctrl+Shift+H$Stagger|"+
403+
"Ctrl+Shift+H$Stagger...|"+
404404
"Ctrl+Shift+J$Chorus|"+
405-
"Ctrl+Shift+K$Velocity LFO|"+
406-
"Ctrl+Shift+Q$Fade In|"+
407-
"Ctrl+Shift+W$Fade Out|"+
408-
"Ctrl+Shift+E$Replace Key|"+
409-
"Ctrl+Shift+R$Set Velocity|"+
410-
"Ctrl+Shift+T$Set Panning|"+
411-
"Ctrl+Shift+Y$Reset Vol/Pan/Pit|"+
405+
"Ctrl+Shift+K$Volume LFO|"+
406+
"Ctrl+Shift+Q$Fade in|"+
407+
"Ctrl+Shift+W$Fade out|"+
408+
"Ctrl+Shift+E$Replace key|"+
409+
"Ctrl+Shift+R$Set velocity...|"+
410+
"Ctrl+Shift+T$Set panning...|"+
411+
"Ctrl+Shift+Y$Set pitch...|"+
412+
"Ctrl+Shift+U$Reset all properties|"+
412413
"/|-|"+
413414
inactive(selected = 0) + "Transpose notes outside octave range")
414415
menu.menuc = selbx
@@ -553,6 +554,10 @@ if (window = 0 && text_focus = -1) {
553554
window = w_setpanning
554555
}
555556
if (keyboard_check_pressed(ord("Y"))&& keyboard_check(vk_shift)) {
557+
playing = 0
558+
window = w_setpitch
559+
}
560+
if (keyboard_check_pressed(ord("U"))&& keyboard_check(vk_shift)) {
556561
playing = 0
557562
macro_reset()
558563
}
@@ -937,21 +942,21 @@ draw_sprite_ext(spr_iconbar, 1, x1, y1+32, 258, 1.3, 0, -1, 1)
937942
draw_sprite_ext(spr_iconbar, 2, 258, y1+32, 1, 1.3, 0, -1, 1)
938943
xx = x1 + 6
939944
var yy = y1+37
940-
if (draw_macroicon(0, xx, yy, "Tremolo", 0, 0)) {playing = 0 window = w_tremolo} xx += 25
941-
if (draw_macroicon(1, xx, yy, "Stereo", 0, 0)) {playing = 0 window = w_stereo} xx += 25
942-
if (draw_macroicon(2, xx, yy, "Arpeggio", 0, 0)) {playing = 0 window = w_arpeggio} xx += 25
943-
if (draw_macroicon(3, xx, yy, "Portamento", 0, 0)) {playing = 0 window = w_portamento} xx += 25
945+
if (draw_macroicon(0, xx, yy, "Tremolo...", 0, 0)) {playing = 0 window = w_tremolo} xx += 25
946+
if (draw_macroicon(1, xx, yy, "Stereo...", 0, 0)) {playing = 0 window = w_stereo} xx += 25
947+
if (draw_macroicon(2, xx, yy, "Arpeggio...", 0, 0)) {playing = 0 window = w_arpeggio} xx += 25
948+
if (draw_macroicon(3, xx, yy, "Portamento...", 0, 0)) {playing = 0 window = w_portamento} xx += 25
944949
if (draw_macroicon(4, xx, yy, "Vibrato", 0, 0)) {playing = 0 macro_vibrato()} xx += 25
945-
if (draw_macroicon(5, xx, yy, "Stagger", 0, 0)) {playing = 0 window = w_stagger} xx += 25
950+
if (draw_macroicon(5, xx, yy, "Stagger...", 0, 0)) {playing = 0 window = w_stagger} xx += 25
946951
if (draw_macroicon(6, xx, yy, "Chorus", 0, 0)) {playing = 0 macro_chorus()} xx += 25
947952
if (draw_macroicon(7, xx, yy, "Volume LFO", 0, 0)) {playing = 0 macro_velocitylfo()} xx += 25
948-
if (draw_macroicon(8, xx, yy, "Fade In", 0, 0)) {playing = 0 macro_fadein()} xx += 25
949-
if (draw_macroicon(9, xx, yy, "Fade Out", 0, 0)) {playing = 0 macro_fadeout()} xx = x1 + 6
950-
if (draw_macroicon(10, xx, yy + 16, "Replace Key", 0, 0)) {playing = 0 macro_replacekey()} xx += 25
951-
if (draw_macroicon(11, xx, yy + 16, "Set Velocity", 0, 0)) {playing = 0 window = w_setvelocity} xx += 25
952-
if (draw_macroicon(12, xx, yy + 16, "Set Panning", 0, 0)) {playing = 0 window = w_setpanning} xx += 25
953-
if (draw_macroicon(13, xx, yy + 16, "Set Pitch", 0, 0)) {playing = 0 window = w_setpitch} xx += 25
954-
if (draw_macroicon(14, xx, yy + 16, "Reset", 0, 0)) {playing = 0 macro_reset()} xx += 25
953+
if (draw_macroicon(8, xx, yy, "Fade in", 0, 0)) {playing = 0 macro_fadein()} xx += 25
954+
if (draw_macroicon(9, xx, yy, "Fade out", 0, 0)) {playing = 0 macro_fadeout()} xx = x1 + 6
955+
if (draw_macroicon(10, xx, yy + 16, "Replace key", 0, 0)) {playing = 0 macro_replacekey()} xx += 25
956+
if (draw_macroicon(11, xx, yy + 16, "Set velocity...", 0, 0)) {playing = 0 window = w_setvelocity} xx += 25
957+
if (draw_macroicon(12, xx, yy + 16, "Set panning...", 0, 0)) {playing = 0 window = w_setpanning} xx += 25
958+
if (draw_macroicon(13, xx, yy + 16, "Set pitch...", 0, 0)) {playing = 0 window = w_setpitch} xx += 25
959+
if (draw_macroicon(14, xx, yy + 16, "Reset all properties", 0, 0)) {playing = 0 macro_reset()} xx += 25
955960
}
956961

957962
// Tabs
@@ -969,11 +974,11 @@ if (draw_tab("File")) {
969974
icon(icons.OPEN)+"Ctrl+O$Open song...|Recent songs...|\\|" + str + condstr(recent_song[0] != "", "-|Clear recent songs") + condstr(recent_song[0] = "", "^!No recent songs") + "|/|-|"+
970975
icon(icons.SAVE)+"Ctrl+S$Save song|"+
971976
icon(icons.SAVE_AS)+"Save song as a new file...|-|"+
972-
"Import Pattern...|"+"Export Pattern...|"+"Import from MIDI...|Import from Schematic...|-|"+
977+
"Import pattern...|"+"Export pattern...|"+"Import from MIDI...|Import from schematic...|-|"+
973978
inactive(totalblocks = 0) + "Export as MP3...|"+
974-
inactive(totalblocks = 0) + "Export as Schematic...|"+
975-
inactive(totalblocks = 0) + "Export as Branch Schematic...|"+
976-
inactive(totalblocks = 0) + "Export as Data Pack...|-|" +
979+
inactive(totalblocks = 0) + "Export as schematic...|"+
980+
inactive(totalblocks = 0) + "Export as branch schematic...|"+
981+
inactive(totalblocks = 0) + "Export as data pack...|-|" +
977982
"Alt + F4$Exit")
978983

979984
}
@@ -1007,7 +1012,7 @@ if (draw_tab("Edit")) {
10071012
inactive(selected = 0) + "Change instrument...|\\|" + str + condstr(customstr != "", "-|") + customstr + "/|-|"+
10081013
inactive(selected = 0 || selection_l = 0) + "Expand selection|"+
10091014
inactive(selected = 0 || selection_l = 0) + "Compress selection|"+
1010-
inactive(selected = 0 || selection_l = 0) + "Macros...|\\||"+ "Tremolo|"+ "Stereo|"+ "Arpeggio|"+ "Portamento|"+ "Vibrato|"+ "Stagger|"+ "Chorus|"+ "Velocity LFO|"+ "Fade In|"+ "Fade Out|"+ "Replace Key|"+ "Reset Vol/Pan/Pit|"+ "/|-|"+
1015+
inactive(selected = 0 || selection_l = 0) + "Macros...|\\||"+ "Tremolo...|"+ "Stereo...|"+ "Arpeggio...|"+ "Portamento...|"+ "Vibrato|"+ "Stagger...|"+ "Chorus|"+ "Volume LFO|"+ "Fade in|"+ "Fade out|"+ "Replace key|"+ "Set velocity...|"+ "Set panning...|"+ "Set pitch...|"+ "Reset all properties|"+ "/|-|"+
10111016
inactive(selected = 0) + "Transpose notes outside octave range")
10121017
}
10131018
if (draw_tab("Settings")) {
@@ -1026,7 +1031,7 @@ if (draw_tab("Settings")) {
10261031
}
10271032
}
10281033
show_menu_ext("settings", 59, 19, "Instrument|\\|" + str + "-|" + customstr + condstr(customstr != "", "-|") +
1029-
icon(icons.INSTRUMENTS)+"Instrument settings...|/|-|" + icon(icons.INFORMATION) + "Song info...|" + icon(icons.PROPERTIES) + "Song properties...|Song stats...|-|" + icon(icons.MIDI_INPUT) + "MIDI device manager|Save Options|Preferences...")
1034+
icon(icons.INSTRUMENTS)+"Instrument settings...|/|-|" + icon(icons.INFORMATION) + "Song info...|" + icon(icons.PROPERTIES) + "Song properties...|Song stats...|-|" + icon(icons.MIDI_INPUT) + "MIDI device manager|Save options...|Preferences...")
10301035
}
10311036
if (draw_tab("Help")) {
10321037
show_menu_ext("help", 109, 19, icon(icons.HELP) + "Tutorial videos|\\|Part 1: Composing note block music|Part 2: Opening MIDI files|Part 3: Importing songs into Minecraft|Part 4: Editing songs made in Minecraft |-|F1$View all|/|-|" + icon(icons.INTERNET) + "Minecraft Forums topic...|Minecraft Wiki page...|-|Changelist...|About...|Github")
@@ -1244,8 +1249,6 @@ if (show_layers) {
12441249
}
12451250
draw_set_halign(fa_left)
12461251
a = mouse_rectangle(108, 57, 64, 22)
1247-
popup_set(108, 57, 64, 22, "Tempo of the song (measured in ticks per second.)\nClick and drag to change. Right click to reset.")
1248-
12491252
if (a && window = 0 && window2 = 0) {
12501253
curs = cr_size_ns
12511254
if (mouse_check_button(mb_left)) {

scripts/draw_window_branch_export/draw_window_branch_export.gml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -76,11 +76,11 @@ if (selected_tab_sch = 0) {
7676

7777
draw_text(x1 + 170, y1 + 220, "Polyphony:")
7878
sch_exp_polyphony = median(1, draw_dragvalue(18, x1 + 260, y1 + 220, sch_exp_polyphony, 1), 3)
79-
draw_text(x1 + 170, y1 + 240, "Main Layer:")
79+
draw_text(x1 + 170, y1 + 240, "Main layer:")
8080
sch_exp_layer1 = median(1, draw_dragvalue(15, x1 + 260, y1 + 240, sch_exp_layer1, 1), sch_exp_maxheight[0] + 1)
8181
sch_exp_layer_index[0] = sch_exp_layer1
82-
draw_text(x1 + 170, y1 + 260, "Chord Layer 1:")
83-
draw_text(x1 + 170, y1 + 280, "Chord Layer 2:")
82+
draw_text(x1 + 170, y1 + 260, "Chord layer 1:")
83+
draw_text(x1 + 170, y1 + 280, "Chord layer 2:")
8484
if (sch_exp_polyphony > 1 ) {
8585
sch_exp_layer2 = median(1, draw_dragvalue(16, x1 + 260, y1 + 260, sch_exp_layer2, 1), sch_exp_maxheight[0] + 1)
8686
sch_exp_layer_index[1] = sch_exp_layer2
@@ -93,10 +93,10 @@ if (selected_tab_sch = 0) {
9393
} else {
9494
draw_text(x1 + 260, y1 + 280, "None")
9595
}
96-
if (draw_checkbox(x1 + 170, y1 + 300, sch_exp_velocity, "Enable Velocity", "Whether to position the note blocks differently due to their velocity.\nIt's recommended that each layer's velocity should be the same when polyphony is higher than 1.")) sch_exp_velocity=!sch_exp_velocity
96+
if (draw_checkbox(x1 + 170, y1 + 300, sch_exp_velocity, "Enable velocity", "Whether to position the note blocks differently due to their velocity.\nIt's recommended that each layer's velocity should be the same when polyphony is higher than 1.")) sch_exp_velocity=!sch_exp_velocity
9797
if sch_exp_velocity = 1 var schwidth = 35 else schwidth = 1
9898
if sch_exp_polyphony > 1 && sch_exp_velocity = 0 var schwidth = 3
99-
if (draw_checkbox(x1 + 170, y1 + 320, sch_exp_circuitry, "Export Circuitry", "Whether to export the ground, repeaters, and redstone.")) sch_exp_circuitry=!sch_exp_circuitry
99+
if (draw_checkbox(x1 + 170, y1 + 320, sch_exp_circuitry, "Export circuitry", "Whether to export the ground, repeaters, and redstone.")) sch_exp_circuitry=!sch_exp_circuitry
100100
draw_text(x1 + 380, y1 + 240 + 16, "Size:")
101101
draw_set_halign(fa_right)
102102
draw_text(x1 + 520, y1 + 240 + 16, string(enda * 2 + 4) + "x" + string(2) + "x" + string(schwidth))

scripts/draw_window_datapack_export/draw_window_datapack_export.gml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -149,7 +149,7 @@ if (selected_tab_dat = 0) {
149149
if (draw_checkbox(x1 + 33, y1 + 55, dat_visualizer, "Enable visualizer", "NOTE: Please use a VOID world as falling blocks will pile up!")) dat_visualizer=!dat_visualizer
150150
//Type
151151
draw_sprite(spr_datapack_exp, 1, x1 + 125, y1 + 55)
152-
draw_text(x1 + 33, y1 + 75, "Visualizer Type")
152+
draw_text(x1 + 33, y1 + 75, "Visualizer type")
153153
if (draw_radiobox(x1 + 33, y1 + 95, dat_vis_type = "Arc", "Arc", "Use Arc visualizer.")) dat_vis_type = "Arc"
154154
if (draw_radiobox(x1 + 33, y1 + 115, dat_vis_type = "Fall", "Fall", "Use Fall visualizer.")) dat_vis_type = "Fall"
155155
if (draw_radiobox(x1 + 33, y1 + 135, dat_vis_type = "Rise", "Rise", "Use Rise visualizer.")) dat_vis_type = "Rise"
@@ -158,15 +158,15 @@ if (selected_tab_dat = 0) {
158158
if (draw_radiobox(x1 + 33, y1 + 195, dat_vis_type = "Fountain", "Fountain", "Use Fountain visualizer.")) dat_vis_type = "Fountain"
159159
if (draw_radiobox(x1 + 33, y1 + 215, dat_vis_type = "Rittai Onkyou", "Rittai Onkyou", "Use Rittai Onkyou visualizer.")) dat_vis_type = "Rittai Onkyou"
160160
if (draw_checkbox(x1 + 33, y1 + 235, dat_glow, "Add Glow", "Whether to add a dat_glow to each instrument.")) dat_glow=!dat_glow
161-
draw_text(x1 + 33, y1 + 255, "Spawn Height:")
161+
draw_text(x1 + 33, y1 + 255, "Spawn height:")
162162
dat_yval = median(0, draw_dragvalue(11, x1 + 33, y1 + 275, dat_yval, 0.5), 256)
163-
draw_text(x1 + 33, y1 + 295, "Position In Map:")
164-
draw_text(x1 + 33, y1 + 318, "X Value:")
163+
draw_text(x1 + 33, y1 + 295, "Position in map:")
164+
draw_text(x1 + 33, y1 + 318, "X value:")
165165
dat_xval = draw_inputbox(23,x1 + 83, y1 + 315,40,dat_xval,"X value")
166-
draw_text(x1 + 33, y1 + 338, "Z Value:")
166+
draw_text(x1 + 33, y1 + 338, "Z value:")
167167
dat_zval = draw_inputbox(24,x1 + 83, y1 + 335,40,dat_zval,"Z value")
168168
//Get note block textures button
169-
if (draw_button2(x1 + 13, y1 + 360, 152, "Get Note Block Textures")) {
169+
if (draw_button2(x1 + 13, y1 + 360, 152, "Get note block textures")) {
170170
datapack_getinstextures()
171171
}
172172
}

scripts/draw_window_macro_portamento/draw_window_macro_portamento.gml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ if (theme = 0) {
1616
draw_rectangle(x1 + 6, y1 + 26, x1 + 134, y1 + 92, 1)
1717
}
1818
if (draw_checkbox(x1 + 10, y1 + 30, porta_reverse, "Reversed", "Portamento is done in the inverse direction.")) porta_reverse=!porta_reverse
19-
draw_areaheader(x1 + 10, y1 + 53, 120, 35, "Cent Shift")
19+
draw_areaheader(x1 + 10, y1 + 53, 120, 35, "Cent shift")
2020
port_cent = median(-1200, draw_dragvalue(11, x1 + 55, y1 + 65, port_cent, 0.1), 1200)
2121

2222
draw_theme_color()

scripts/draw_window_macro_setpanning/draw_window_macro_setpanning.gml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ x1 = floor(window_width / 2 - 80)
66
y1 = floor(window_height / 2 - 80)
77
draw_window(x1, y1, x1 + 140, y1 + 130)
88
draw_set_font(fnt_mainbold)
9-
draw_text(x1 + 8, y1 + 8, "Set Note Panning")
9+
draw_text(x1 + 8, y1 + 8, "Set note panning")
1010
if (selected = 0) return 0
1111
draw_set_font(fnt_main)
1212
if (theme = 0) {

scripts/draw_window_macro_setpitch/draw_window_macro_setpitch.gml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ x1 = floor(window_width / 2 - 80)
66
y1 = floor(window_height / 2 - 80)
77
draw_window(x1, y1, x1 + 140, y1 + 130)
88
draw_set_font(fnt_mainbold)
9-
draw_text(x1 + 8, y1 + 8, "Set Note Pitch")
9+
draw_text(x1 + 8, y1 + 8, "Set note pitch")
1010
if (selected = 0) return 0
1111
draw_set_font(fnt_main)
1212
if (theme = 0) {

scripts/draw_window_macro_setvelocity/draw_window_macro_setvelocity.gml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ x1 = floor(window_width / 2 - 80)
66
y1 = floor(window_height / 2 - 80)
77
draw_window(x1, y1, x1 + 140, y1 + 130)
88
draw_set_font(fnt_mainbold)
9-
draw_text(x1 + 8, y1 + 8, "Set Note Velocity")
9+
draw_text(x1 + 8, y1 + 8, "Set note velocity")
1010
if (selected = 0) return 0
1111
draw_set_font(fnt_main)
1212
if (theme = 0) {

scripts/draw_window_macro_stagger/draw_window_macro_stagger.gml

Lines changed: 12 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -4,25 +4,28 @@ curs = cr_default
44
text_exists[0] = 0
55
x1 = floor(window_width / 2 - 80)
66
y1 = floor(window_height / 2 - 70)
7-
draw_window(x1, y1, x1 + 140, y1 + 140)
7+
draw_window(x1, y1, x1 + 150, y1 + 160)
88
draw_theme_color()
99
draw_set_font(fnt_mainbold)
10-
draw_text(x1 + 8, y1 + 8, "Stagger (WARNING: CANNOT BE UNDONE)")
10+
draw_text(x1 + 8, y1 + 8, "Stagger")
11+
draw_set_color(c_red)
12+
draw_text(x1 + 8, y1 + 23, "(CANNOT BE UNDONE)")
13+
draw_theme_color()
1114
pattern = ""
1215
if (selected = 0) return 0
1316
draw_set_font(fnt_main)
1417
if (theme = 0) {
1518
draw_set_color(c_white)
16-
draw_rectangle(x1 + 6, y1 + 26, x1 + 134, y1 + 102, 0)
19+
draw_rectangle(x1 + 11, y1 + 26, x1 + 154, y1 + 102, 0)
1720
draw_set_color(make_color_rgb(137, 140, 149))
18-
draw_rectangle(x1 + 6, y1 + 26, x1 + 134, y1 + 102, 1)
21+
draw_rectangle(x1 + 11, y1 + 26, x1 + 154, y1 + 102, 1)
1922
}
20-
draw_areaheader(x1 + 10, y1 + 33, 120, 35, "Pattern")
23+
draw_areaheader(x1 + 15, y1 + 53, 120, 35, "Pattern")
2124

22-
pattern = draw_textarea(5, x1 + 15, y1 + 40, 113, 25, string(pattern), "Must separate relative keys with pipes.")
25+
pattern = draw_textarea(5, x1 + 20, y1 + 60, 113, 25, string(pattern), "Must separate relative keys with pipes.")
2326
draw_set_font(fnt_main)
24-
draw_text(x1 + 20, y1 + 72,"This may replace \nlower note blocks!")
25-
if (draw_button2(x1 + 10, y1 + 108, 60, "OK")) {
27+
draw_text(x1 + 25, y1 + 92,"This may replace \nlower note blocks!")
28+
if (draw_button2(x1 + 15, y1 + 128, 60, "OK")) {
2629
if string_count("|", pattern) = 0 {
2730
message("Please add pipes ( | ) to separate values!", "Error")
2831
return -1
@@ -76,5 +79,5 @@ if (draw_button2(x1 + 10, y1 + 108, 60, "OK")) {
7679
selection_code_update()
7780
history_set(h_selectchange, selection_x, selection_y, selection_code, selection_x, selection_y, str)
7881
}
79-
if (draw_button2(x1 + 70, y1 + 108, 60, "Cancel")) {window = 0}
82+
if (draw_button2(x1 + 75, y1 + 128, 60, "Cancel")) {window = 0}
8083
window_set_cursor(curs)

scripts/draw_window_macro_stereo/draw_window_macro_stereo.gml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ x1 = floor(window_width / 2 - 80)
66
y1 = floor(window_height / 2 - 80)
77
draw_window(x1, y1, x1 + 140, y1 + 130)
88
draw_set_font(fnt_mainbold)
9-
draw_text(x1 + 8, y1 + 8, "Stereo Macro")
9+
draw_text(x1 + 8, y1 + 8, "Stereo")
1010
if (selected = 0) return 0
1111
draw_set_font(fnt_main)
1212
if (theme = 0) {
@@ -16,7 +16,7 @@ if (theme = 0) {
1616
draw_rectangle(x1 + 6, y1 + 26, x1 + 134, y1 + 92, 1)
1717
}
1818
if (draw_checkbox(x1 + 10, y1 + 30, stereo_reverse, "Reversed", "Delay is done in the inverse direction.")) stereo_reverse=!stereo_reverse
19-
draw_areaheader(x1 + 10, y1 + 53, 120, 35, "Stereo Width")
19+
draw_areaheader(x1 + 10, y1 + 53, 120, 35, "Stereo width")
2020
stereo_width = median(0, draw_dragvalue(11, x1 + 55, y1 + 65, stereo_width, 0.5), 100)
2121

2222
draw_theme_color()

0 commit comments

Comments
 (0)