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-Url: https://git.artsoft.org/?p=rocksndiamonds.git;a=commitdiff_plain;h=9e9371e54c2ccd0c2ace5a8e3f8b1308c268b92f 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 51697ccc..6dc9881f 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;