Add BaseWidget::ShowChildren

This commit is contained in:
Lynix
2020-03-15 17:48:14 +01:00
parent 9d88fcd649
commit adf1233ef2
3 changed files with 15 additions and 2 deletions

View File

@@ -172,6 +172,11 @@ namespace Ndk
return m_children.size();
}
inline void BaseWidget::Hide()
{
return Show(false);
}
inline bool BaseWidget::IsVisible() const
{
return m_visible;