summaryrefslogtreecommitdiff
path: root/src/textbuf_gui.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/textbuf_gui.h')
-rw-r--r--src/textbuf_gui.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/textbuf_gui.h b/src/textbuf_gui.h
index 422d26469..7d91b67e7 100644
--- a/src/textbuf_gui.h
+++ b/src/textbuf_gui.h
@@ -31,8 +31,9 @@ void UpdateTextBufferSize(Textbuf *tb);
/** Flags used in ShowQueryString() call */
enum QueryStringFlags {
- QSF_NONE = 0,
+ QSF_NONE = 0,
QSF_ACCEPT_UNCHANGED = 0x01, ///< return success even when the text didn't change
+ QSF_ENABLE_DEFAULT = 0x02, ///< enable the 'Default' button ("\0" is returned)
};
DECLARE_ENUM_AS_BIT_SET(QueryStringFlags)