1
0
Fork 0
mirror of https://github.com/OpenMW/openmw.git synced 2025-01-31 22:45:35 +00:00
openmw/components/lua_ui/textedit.cpp
2022-01-28 09:31:45 +00:00

11 lines
205 B
C++

#include "textedit.hpp"
namespace LuaUi
{
void LuaTextEdit::updateProperties()
{
setCaption(propertyValue("caption", std::string()));
WidgetExtension::updateProperties();
}
}