mirror of
https://github.com/luanti-org/luanti.git
synced 2025-07-22 17:18:39 +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
12
src/chat.h
12
src/chat.h
|
@ -113,6 +113,13 @@ public:
|
|||
// Scroll to top of buffer (oldest)
|
||||
void scrollTop();
|
||||
|
||||
// Functions for keeping track of whether the lines were modified by any
|
||||
// preceding operations
|
||||
// If they were not changed, getLineCount() and getLine() output the same as
|
||||
// before
|
||||
bool getLinesModified() const { return m_lines_modified; }
|
||||
void resetLinesModified() { m_lines_modified = false; }
|
||||
|
||||
// Format a chat line for the given number of columns.
|
||||
// Appends the formatted lines to the destination array and
|
||||
// returns the number of formatted lines.
|
||||
|
@ -146,6 +153,11 @@ private:
|
|||
bool m_cache_clickable_chat_weblinks;
|
||||
// Color of clickable chat weblinks
|
||||
irr::video::SColor m_cache_chat_weblink_color;
|
||||
|
||||
// Whether the lines were modified since last markLinesUnchanged()
|
||||
// Is always set to true when m_unformatted is modified, because that's what
|
||||
// determines the output of getLineCount() and getLine()
|
||||
bool m_lines_modified = true;
|
||||
};
|
||||
|
||||
class ChatPrompt
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue