From: SmallJoker Date: Sat, 11 Apr 2020 13:31:02 +0000 (+0200) Subject: Formspec: No spec ID for static text labels X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=01b3f26c7bc62305b205136bb95a2a4550761c3c;p=oweals%2Fminetest.git Formspec: No spec ID for static text labels Fixes #9634 --- diff --git a/src/gui/guiFormSpecMenu.cpp b/src/gui/guiFormSpecMenu.cpp index 59cd130ef..acb153569 100644 --- a/src/gui/guiFormSpecMenu.cpp +++ b/src/gui/guiFormSpecMenu.cpp @@ -1424,7 +1424,7 @@ void GUIFormSpecMenu::createTextField(parserData *data, FieldSpec &spec, if (!is_editable && !is_multiline) { // spec field id to 0, this stops submit searching for a value that isn't there gui::StaticText::add(Environment, spec.flabel.c_str(), rect, false, true, - this, spec.fid); + this, 0); return; }