summaryrefslogtreecommitdiff
path: root/Editor/Scripting/Window
diff options
context:
space:
mode:
Diffstat (limited to 'Editor/Scripting/Window')
-rw-r--r--Editor/Scripting/Window/ContainerWindow.bind.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/Editor/Scripting/Window/ContainerWindow.bind.cpp b/Editor/Scripting/Window/ContainerWindow.bind.cpp
index f459c85..f3a8cc7 100644
--- a/Editor/Scripting/Window/ContainerWindow.bind.cpp
+++ b/Editor/Scripting/Window/ContainerWindow.bind.cpp
@@ -62,7 +62,7 @@ LUA_BIND_IMPL_METHOD(ContainerWindow, _GetSize)
{
LUA_BIND_PREPARE(L, ContainerWindow);
- state.PushLuaObject(self->GetSize());
+ state.PushLuaObject<Vector2f>(self->GetSize());
return 1;
}