From 9e9371e54c2ccd0c2ace5a8e3f8b1308c268b92f Mon Sep 17 00:00:00 2001 From: Holger Schemel Date: Fri, 18 Dec 2020 02:17:51 +0100 Subject: [PATCH] added option for '.draw_order' for request dialog (not used yet) --- src/conf_gfx.c | 1 + src/main.h | 1 + 2 files changed, 2 insertions(+) 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; -- 2.34.1