Skip to content

Commit 8583cf2

Browse files
committed
Fix wrong area size in 'Save options' with Aqua theme
1 parent 713fdb7 commit 8583cf2

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

scripts/draw_window_save_options/draw_window_save_options.gml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,9 @@ function draw_window_save_options() {
1111
draw_set_font(fnt_main)
1212
if (theme = 0) {
1313
draw_set_color(c_white)
14-
draw_rectangle(x1 + 6, y1 + 26, x1 + 134, y1 + 117, 0)
14+
draw_rectangle(x1 + 6, y1 + 26, x1 + 134, y1 + 132, 0)
1515
draw_set_color(make_color_rgb(137, 140, 149))
16-
draw_rectangle(x1 + 6, y1 + 26, x1 + 134, y1 + 117, 1)
16+
draw_rectangle(x1 + 6, y1 + 26, x1 + 134, y1 + 132, 1)
1717
}
1818
draw_theme_color()
1919

0 commit comments

Comments
 (0)