mirror of
https://github.com/luanti-org/luanti.git
synced 2025-10-13 00:25:19 +02:00
Fix GameUI text staying visible during shutdown. (#14197)
This commit is contained in:
@@ -334,3 +334,36 @@ void GameUI::deleteFormspec()
|
||||
|
||||
m_formname.clear();
|
||||
}
|
||||
|
||||
void GameUI::clearText()
|
||||
{
|
||||
if (m_guitext_chat) {
|
||||
m_guitext_chat->remove();
|
||||
m_guitext_chat = nullptr;
|
||||
}
|
||||
|
||||
if (m_guitext) {
|
||||
m_guitext->remove();
|
||||
m_guitext = nullptr;
|
||||
}
|
||||
|
||||
if (m_guitext2) {
|
||||
m_guitext2->remove();
|
||||
m_guitext2 = nullptr;
|
||||
}
|
||||
|
||||
if (m_guitext_info) {
|
||||
m_guitext_info->remove();
|
||||
m_guitext_info = nullptr;
|
||||
}
|
||||
|
||||
if (m_guitext_status) {
|
||||
m_guitext_status->remove();
|
||||
m_guitext_status = nullptr;
|
||||
}
|
||||
|
||||
if (m_guitext_profiler) {
|
||||
m_guitext_profiler->remove();
|
||||
m_guitext_profiler = nullptr;
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user