1
0
mirror of https://github.com/vcmi/vcmi.git synced 2025-01-14 02:33:51 +02:00

Chat textbox now correctly positioned and uses blue slider

This commit is contained in:
Ivan Savenko 2024-03-11 17:49:42 +02:00
parent be641d1710
commit 2d37180fe2
2 changed files with 4 additions and 2 deletions

View File

@ -768,8 +768,9 @@ std::shared_ptr<CTextBox> InterfaceObjectConfigurable::buildTextBox(const JsonNo
auto alignment = readTextAlignment(config["alignment"]);
auto color = readColor(config["color"]);
auto text = readText(config["text"]);
auto blueTheme = config["blueTheme"].Bool();
return std::make_shared<CTextBox>(text, rect, 0, font, alignment, color);
return std::make_shared<CTextBox>(text, rect, blueTheme ? 1 : 0, font, alignment, color);
}
std::shared_ptr<CIntObject> InterfaceObjectConfigurable::buildWidget(JsonNode config) const

View File

@ -89,7 +89,8 @@
"font": "small",
"alignment": "left",
"color": "white",
"rect": {"x": 440, "y": 70, "w": 430, "h": 495}
"blueTheme" : true,
"rect": {"x": 440, "y": 68, "w": 418, "h": 495}
},
{