diff options
author | Andrey Kleshchev <andreykproductengine@lindenlab.com> | 2020-10-23 18:42:57 +0300 |
---|---|---|
committer | Andrey Kleshchev <andreykproductengine@lindenlab.com> | 2020-10-23 18:42:57 +0300 |
commit | 6e20fc99e76e5632e6e609d959156b444290286e (patch) | |
tree | ebf181d27327be2e57ab65da0bf1812fbedf7936 /indra | |
parent | 42330f2008181d2246ae4684f1eaa299c1228166 (diff) |
SL-14181 Fix missing message when deleting last classified
Diffstat (limited to 'indra')
-rw-r--r-- | indra/newview/llpanelprofileclassifieds.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/indra/newview/llpanelprofileclassifieds.cpp b/indra/newview/llpanelprofileclassifieds.cpp index d72028a366..1f638bdeb6 100644 --- a/indra/newview/llpanelprofileclassifieds.cpp +++ b/indra/newview/llpanelprofileclassifieds.cpp @@ -248,6 +248,9 @@ void LLPanelProfileClassifieds::callbackDeleteClassified(const LLSD& notificatio } updateButtons(); + + BOOL no_data = !mTabContainer->getTabCount(); + mNoItemsLabel->setVisible(no_data); } } |