This is an automated email from the git hooks/post-receive script.
git pushed a commit to branch master
in repository e16.
View the commit online.
commit 2aa0f9fef4084dc68df4da151e58372e911b37a0
Author: Kim Woelders <k...@woelders.dk>
AuthorDate: Fri Sep 22 20:49:26 2023 +0200
dialogs: Enable using DialogOK() early
---
src/dialog.c | 5 ++++-
1 file changed, 4 insertions(+), 1 deletion(-)
diff --git a/src/dialog.c b/src/dialog.c
index b8550976..25c18172 100644
--- a/src/dialog.c
+++ b/src/dialog.c
@@ -1801,7 +1801,10 @@ DialogOK(const char *title, const char *fmt, ...)
Evsnprintf(text, sizeof(text), fmt, args);
va_end(args);
- DialogOKstr(title, text);
+ if (Mode.wm.startup)
+ Eprintf("%s: %s\n", title, text);
+ else
+ DialogOKstr(title, text);
}
void
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.