| 89 | } |
| 90 | |
| 91 | bool OvUI::Panels::PanelWindow::IsVisible() const |
| 92 | { |
| 93 | if (auto window = ImGui::FindWindowByName((name + GetPanelID()).c_str()); window) |
| 94 | return !window->Hidden; |
| 95 | else |
| 96 | return false; |
| 97 | } |
| 98 | |
| 99 | void OvUI::Panels::PanelWindow::ScrollToBottom() |
| 100 | { |
no test coverage detected