@@ -86,7 +86,7 @@ if (selected_tab = 0) {
8686 }
8787 popup_set_window (x1 + 306 , y1 + 110 , 180 , 16 , " The amount of minutes between each auto-save." )
8888
89- draw_areaheader (x1 + 22 , y1 + 164 , 218 , 80 , " Theme" )
89+ draw_areaheader (x1 + 22 , y1 + 164 , 218 , 110 , " Theme" )
9090 if (draw_radiobox (x1 + 40 , y1 + 164 + 16 , theme == 0 , " Aqua" , " Use the aqua theme." )) {theme = 0 change_theme ()}
9191 if (draw_radiobox (x1 + 40 , y1 + 164 + 16 + 20 , theme == 2 , " Dark" , " Use the dark theme." )) {theme = 2 change_theme ()}
9292 if (draw_radiobox (x1 + 40 , y1 + 164 + 16 + 20 + 20 , theme == 1 , " 90s" , " Use the 90s theme." )) {theme = 1 change_theme ()}
@@ -100,37 +100,37 @@ if (selected_tab = 0) {
100100 refreshrate=1
101101 }
102102
103- draw_text (x1 + 22 , y1 + 260 , " Song folder: " + string_truncate (songfolder, 360 ))
104- popup_set_window (x1 + 22 , y1 + 260 , 430 , 18 , songfolder)
105- if (draw_button2 (x1 + 22 , y1 + 276 , 76 , " Open" )) {
103+ draw_text (x1 + 22 , y1 + 290 , " Song folder: " + string_truncate (songfolder, 360 ))
104+ popup_set_window (x1 + 22 , y1 + 290 , 430 , 18 , songfolder)
105+ if (draw_button2 (x1 + 22 , y1 + 306 , 76 , " Open" )) {
106106 if (!directory_exists_lib (songfolder)) {
107107 message (" The indicated folder doesn't exist!" , " Error" )
108108 } else {
109109 open_url (songfolder)
110110 }
111111 }
112- if (draw_button2 (x1 + 22 + 84 , y1 + 276 , 76 , " Change" )) {
112+ if (draw_button2 (x1 + 22 + 84 , y1 + 306 , 76 , " Change" )) {
113113 message (" Select the directory where saving/loading should be opened in." , " " )
114114 a = string (get_save_filename_ext (" " , " Select song folder" , songfolder, " Song folder" ))
115115 if (a != " " ) songfolder = filename_dir (a)
116116 }
117- if (draw_button2 (x1 + 22 + 84 + 84 , y1 + 276 , 96 , " Use default" )) songfolder = songs_directory
117+ if (draw_button2 (x1 + 22 + 84 + 84 , y1 + 306 , 96 , " Use default" )) songfolder = songs_directory
118118
119- draw_text (x1 + 22 , y1 + 310 , " Pattern folder: " + string_truncate (patternfolder, 360 ))
120- popup_set_window (x1 + 22 , y1 + 300 , 430 , 18 , patternfolder)
121- if (draw_button2 (x1 + 22 , y1 + 326 , 76 , " Open" )) {
119+ draw_text (x1 + 22 , y1 + 340 , " Pattern folder: " + string_truncate (patternfolder, 360 ))
120+ popup_set_window (x1 + 22 , y1 + 340 , 430 , 18 , patternfolder)
121+ if (draw_button2 (x1 + 22 , y1 + 356 , 76 , " Open" )) {
122122 if (!directory_exists_lib (patternfolder)) {
123123 message (" The indicated folder doesn't exist!" , " Error" )
124124 } else {
125125 open_url (patternfolder)
126126 }
127127 }
128- if (draw_button2 (x1 + 22 + 84 , y1 + 326 , 76 , " Change" )) {
128+ if (draw_button2 (x1 + 22 + 84 , y1 + 356 , 76 , " Change" )) {
129129 message (" Select the directory where patterns can be imported/exported to." , " " )
130130 a = string (get_save_filename_ext (" " , " Select patterns folder" , patternfolder, " Pattern folder" ))
131131 if (a != " " ) patternfolder = filename_dir (a)
132132 }
133- if (draw_button2 (x1 + 22 + 84 + 84 , y1 + 326 , 96 , " Use default" )) patternfolder = pattern_directory
133+ if (draw_button2 (x1 + 22 + 84 + 84 , y1 + 356 , 96 , " Use default" )) patternfolder = pattern_directory
134134} else if (selected_tab = 1 ) {
135135 draw_areaheader (x1 + 22 , y1 + 74 , 456 , 196 , " Note blocks" )
136136 if (draw_checkbox (x1 + 40 , y1 + 90 , use_colors, " Use colored note blocks" , " If the instruments should be identified with\n different colors." )) use_colors=!use_colors
0 commit comments