1
0
mirror of https://gitlab.com/OpenMW/openmw.git synced 2025-01-30 03:32:36 +00:00
OpenMW/components/lua_ui/textedit.cpp
2021-11-18 15:19:54 +00:00

20 lines
427 B
C++

#include "textedit.hpp"
namespace LuaUi
{
bool LuaTextEdit::setPropertyRaw(std::string_view name, sol::object value)
{
if (name == "caption")
{
if (!value.is<std::string>())
return false;
setCaption(value.as<std::string>());
}
else
{
return WidgetExtension::setPropertyRaw(name, value);
}
return true;
}
}