1
0
mirror of https://gitlab.com/OpenMW/openmw.git synced 2025-01-08 09:37:53 +00:00
OpenMW/components/lua_ui/textedit.cpp
2022-01-28 09:31:45 +00:00

12 lines
205 B
C++

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