diff options
author | Andrey Lihatskiy <alihatskiy@productengine.com> | 2024-07-25 15:51:34 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-07-25 15:51:34 +0300 |
commit | 6e7c6a3842c077b97b3d9fb04c818613efa06f6f (patch) | |
tree | c91d4184295feb92de63946b0f064074da53071e /indra/llui/llwindowshade.h | |
parent | ca70244339291b2a06aab55e865339c534433372 (diff) | |
parent | 7bb62fff08942db95805de454b43d006ca47428b (diff) |
Merge pull request #2099 from RyeMutt/fix-findchild-stutter
Fix various sources of stutter from findChild during draw
Diffstat (limited to 'indra/llui/llwindowshade.h')
-rw-r--r-- | indra/llui/llwindowshade.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/indra/llui/llwindowshade.h b/indra/llui/llwindowshade.h index a401394d78..da29188943 100644 --- a/indra/llui/llwindowshade.h +++ b/indra/llui/llwindowshade.h @@ -31,6 +31,9 @@ #include "llnotifications.h" #include "lluiimage.h" +class LLLayoutPanel; +class LLTextBox; + class LLWindowShade : public LLUICtrl { public: @@ -68,6 +71,10 @@ private: void onEnterNotificationText(LLUICtrl* ctrl, const std::string& name); void onClickIgnore(LLUICtrl* ctrl); + LLLayoutPanel* mBackgroundArea = nullptr; + LLLayoutPanel* mNotificationsArea = nullptr; + LLTextBox* mNotificationsText = nullptr; + std::vector<LLNotificationPtr> mNotifications; LLSD mNotificationResponse; bool mModal; |