Skip to content

Commit 7422788

Browse files
committed
Fix "out-of-range" hyphenization
When the words work as the qualifier of a noun, they must be hyphenated.
1 parent 4b7cd48 commit 7422788

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

scripts/draw_window_datapack_export/draw_window_datapack_export.gml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -116,8 +116,8 @@ if (selected_tab_dat = 0) {
116116
//Locked layers
117117
if (draw_checkbox(x1 + 362, y1 + 213, dat_includelocked, "Include locked layers", "Whether to include locked layers in the data pack.")) dat_includelocked=!dat_includelocked
118118

119-
//Out of range notes
120-
if (draw_checkbox(x1 + 362, y1 + 238, dat_includeoutofrange, "Include out of range notes", "Whether to include notes that don't fall into the 2 octave range supported by"+br+"Minecraft. This will require an additional resource pack you can get below.")) dat_includeoutofrange = !dat_includeoutofrange
119+
//Out-of-range notes
120+
if (draw_checkbox(x1 + 362, y1 + 238, dat_includeoutofrange, "Include out-of-range notes", "Whether to include notes that don't fall into the 2 octave range supported by"+br+"Minecraft. This will require an additional resource pack you can get below.")) dat_includeoutofrange = !dat_includeoutofrange
121121

122122
//Radius
123123
if (draw_checkbox(x1 + 362, y1 + 263, dat_enableradius, "Nearby listening", "Whether to let all players in a given"+br+"radius hear the music as well.")) dat_enableradius = !dat_enableradius

scripts/draw_window_preferences/draw_window_preferences.gml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -147,7 +147,7 @@ if (selected_tab = 0) {
147147
if (draw_checkbox(x1 + 40, y1 + 375, show_keynumbers, "Show key numbers", "Whether to show the amount of right-clicks required\non each key inside the 2 octave range.")) show_keynumbers=!show_keynumbers
148148
if (draw_checkbox(x1 + 40, y1 + 395, show_keyboard, "Show keyboard shortcuts", "Show the keyboard shortcuts of the keys.")) show_keyboard=!show_keyboard
149149
if (draw_checkbox(x1 + 40, y1 + 415, show_notechart, "Show note chart when hovering over keys", "Whether to show a note chart\nwhen hovering over the keys.")) show_notechart=!show_notechart
150-
if (draw_checkbox(x1 + 40, y1 + 435, show_outofrange, "Highlight out of range keys", "Whether to show a red tint on keys\noutside of the 2 octave range.")) show_outofrange=!show_outofrange
150+
if (draw_checkbox(x1 + 40, y1 + 435, show_outofrange, "Highlight out-of-range keys", "Whether to show a red tint on keys\noutside of the 2 octave range.")) show_outofrange=!show_outofrange
151151
if (!show_piano) draw_set_color(c_gray)
152152
draw_text(x1 + 70, y1 + 330, "Keys to show:")
153153
if (show_piano) {

0 commit comments

Comments
 (0)