mirror of
https://github.com/whoahq/whoa.git
synced 2026-02-01 00:02:45 +03:00
feat(ui): implement CSimpleFrame_IsVisible
This commit is contained in:
parent
43728820eb
commit
e87aff4c11
@ -295,7 +295,16 @@ int32_t CSimpleFrame_Hide(lua_State* L) {
|
||||
}
|
||||
|
||||
int32_t CSimpleFrame_IsVisible(lua_State* L) {
|
||||
WHOA_UNIMPLEMENTED(0);
|
||||
auto type = CSimpleFrame::GetObjectType();
|
||||
auto frame = static_cast<CSimpleFrame*>(FrameScript_GetObjectThis(L, type));
|
||||
|
||||
if (frame->m_visible) {
|
||||
lua_pushnumber(L, 1.0);
|
||||
} else {
|
||||
lua_pushnil(L);
|
||||
}
|
||||
|
||||
return 1;
|
||||
}
|
||||
|
||||
int32_t CSimpleFrame_IsShown(lua_State* L) {
|
||||
|
||||
Loading…
Reference in New Issue
Block a user