forked from Mirrorlandia_minetest/minetest
Fix background color of formspec text fields
This commit is contained in:
parent
a0047d6edc
commit
758e3aa1ca
@ -1577,11 +1577,10 @@ void GUIFormSpecMenu::createTextField(parserData *data, FieldSpec &spec,
|
||||
}
|
||||
|
||||
e->setNotClipped(style.getBool(StyleSpec::NOCLIP, false));
|
||||
e->setDrawBorder(style.getBool(StyleSpec::BORDER, true));
|
||||
e->setOverrideColor(style.getColor(StyleSpec::TEXTCOLOR, video::SColor(0xFFFFFFFF)));
|
||||
if (style.get(StyleSpec::BGCOLOR, "") == "transparent") {
|
||||
e->setDrawBackground(false);
|
||||
}
|
||||
bool border = style.getBool(StyleSpec::BORDER, true);
|
||||
e->setDrawBorder(border);
|
||||
e->setDrawBackground(border);
|
||||
e->setOverrideFont(style.getFont());
|
||||
|
||||
e->drop();
|
||||
|
Loading…
Reference in New Issue
Block a user