diff options
author | Jonathan "Geenz" Goodman <geenz@lindenlab.com> | 2025-04-17 20:06:39 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-04-17 20:06:39 -0400 |
commit | 2fb0abbffb407e557f1dba8d9018e65c059ba13f (patch) | |
tree | e87a3d6990525ac9ba95e9499804349542ac33c8 /indra/llui/llchatentry.h | |
parent | c73fbed91f87372c749ed40085a34fd7e633f1f7 (diff) | |
parent | a7e84c918da94fde58e99e0770dfd90db14739a9 (diff) |
Merge pull request #3930 from Ansariel/develop-chatentry-improvement
Restore currently entered text in chat entry textbox after going through history with Ctrl-PgUp/PgDown
Diffstat (limited to 'indra/llui/llchatentry.h')
-rw-r--r-- | indra/llui/llchatentry.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/indra/llui/llchatentry.h b/indra/llui/llchatentry.h index 5621ede1e7..9a0e8ee91e 100644 --- a/indra/llui/llchatentry.h +++ b/indra/llui/llchatentry.h @@ -101,6 +101,8 @@ private: S32 mExpandLinesCount; S32 mPrevLinesCount; S32 mPrevExpandedLineCount; + + std::string mCurrentInput; }; #endif /* LLCHATENTRY_H_ */ |