mirror of
https://github.com/luanti-org/luanti.git
synced 2025-08-06 17:41:04 +00:00
Fix client-side performance of chat UI (#11612)
This commit is contained in:
parent
40ea4ddef1
commit
e79d6154fc
5 changed files with 47 additions and 18 deletions
|
@ -89,6 +89,7 @@ public:
|
|||
return m_flags.show_chat && m_recent_chat_count != 0 && m_profiler_current_page == 0;
|
||||
}
|
||||
void setChatText(const EnrichedString &chat_text, u32 recent_chat_count);
|
||||
void updateChatSize();
|
||||
|
||||
void updateProfiler();
|
||||
|
||||
|
@ -122,6 +123,7 @@ private:
|
|||
|
||||
gui::IGUIStaticText *m_guitext_chat = nullptr; // Chat text
|
||||
u32 m_recent_chat_count = 0;
|
||||
core::rect<s32> m_current_chat_size{0, 0, 0, 0};
|
||||
|
||||
gui::IGUIStaticText *m_guitext_profiler = nullptr; // Profiler text
|
||||
u8 m_profiler_current_page = 0;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue