From 4c8af5492ba9c3b9671f5213e81d28a7b856e134 Mon Sep 17 00:00:00 2001 From: DS Date: Sat, 11 Jan 2020 20:17:11 +0100 Subject: Formspec: change the appeareance of the cursor on fields and co. (#8665) --- src/gui/guiFormSpecMenu.h | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) (limited to 'src/gui/guiFormSpecMenu.h') diff --git a/src/gui/guiFormSpecMenu.h b/src/gui/guiFormSpecMenu.h index d6c762866..155081e08 100644 --- a/src/gui/guiFormSpecMenu.h +++ b/src/gui/guiFormSpecMenu.h @@ -143,7 +143,8 @@ class GUIFormSpecMenu : public GUIModalMenu FieldSpec() = default; FieldSpec(const std::string &name, const std::wstring &label, - const std::wstring &default_text, s32 id, int priority = 0) : + const std::wstring &default_text, s32 id, int priority = 0, + gui::ECURSOR_ICON cursor_icon = ECI_NORMAL) : fname(name), flabel(label), fdefault(unescape_enriched(translate_string(default_text))), @@ -151,7 +152,8 @@ class GUIFormSpecMenu : public GUIModalMenu send(false), ftype(f_Unknown), is_exit(false), - priority(priority) + priority(priority), + fcursor_icon(cursor_icon) { } @@ -165,6 +167,7 @@ class GUIFormSpecMenu : public GUIModalMenu // Draw priority for formspec version < 3 int priority; core::rect rect; + gui::ECURSOR_ICON fcursor_icon; }; struct TooltipSpec -- cgit v1.2.3