diff options
author | Mike Antipov <mantipov@productengine.com> | 2009-11-13 17:52:57 +0200 |
---|---|---|
committer | Mike Antipov <mantipov@productengine.com> | 2009-11-13 17:52:57 +0200 |
commit | 806edae08493b746edc46f3def332030f69a02df (patch) | |
tree | 4aaf286add7d3d5c31601b3967328461cdab130c /indra/newview/llbottomtray.cpp | |
parent | 977b731dd6cb5ce0ef754633a2c95130ee016ee4 (diff) |
Work on major sub-task EXT-991 (Update bottom bar behavior on resize)
Improved functionality to process Buttons showing via context menu
- added new alert dialog ("BottomTrayButtonCanNotBeShown") in case when there is no enough space to show button
For now it contains a such message:
"Selected button can not be shown right now.
The button will be shown when there is enough space for it."
It should be reviewed by XUI team
--HG--
branch : product-engine
Diffstat (limited to 'indra/newview/llbottomtray.cpp')
-rw-r--r-- | indra/newview/llbottomtray.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/indra/newview/llbottomtray.cpp b/indra/newview/llbottomtray.cpp index c0ab0b27e5..dd06959472 100644 --- a/indra/newview/llbottomtray.cpp +++ b/indra/newview/llbottomtray.cpp @@ -761,6 +761,7 @@ void LLBottomTray::setTrayButtonVisibleIfPossible(EResizeState shown_object_type { // mark this button to show it while future bottom tray extending mResizeState |= shown_object_type; + LLNotifications::instance().add("BottomTrayButtonCanNotBeShown"); } } |