From: Holger Schemel Date: Fri, 18 Dec 2020 01:17:51 +0000 (+0100) Subject: added option for '.draw_order' for request dialog (not used yet) X-Git-Tag: 4.2.2.0~3 X-Git-Url: https://git.artsoft.org/?p=rocksndiamonds.git;a=commitdiff_plain;h=98a36b5814c35b32554409b491139104f3bf7a3c added option for '.draw_order' for request dialog (not used yet) --- diff --git a/src/conf_gfx.c b/src/conf_gfx.c index bfcc94fd..69564a38 100644 --- a/src/conf_gfx.c +++ b/src/conf_gfx.c @@ -9739,6 +9739,7 @@ struct ConfigInfo image_config[] = { "request.anim_mode", "default" }, { "request.align", "center" }, { "request.valign", "middle" }, + { "request.draw_order", "0" }, { "request.autowrap", "false" }, { "request.centered", "true" }, { "request.wrap_single_words", "true" }, diff --git a/src/main.h b/src/main.h index 9627d928..3dd32c3d 100644 --- a/src/main.h +++ b/src/main.h @@ -2890,6 +2890,7 @@ struct RequestInfo int anim_mode; int align; int valign; + int sort_priority; boolean autowrap; boolean centered; boolean wrap_single_words;