1
0
Fork 0
mirror of https://github.com/OpenMW/openmw.git synced 2025-01-21 08:53:52 +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();
}
}