diff options
author | Maxim Nikolenko <maximnproductengine@lindenlab.com> | 2023-04-04 16:38:53 +0300 |
---|---|---|
committer | Maxim Nikolenko <maximnproductengine@lindenlab.com> | 2023-04-04 16:38:53 +0300 |
commit | 58092382269eb8dc48fb30734ee3738f7385f8da (patch) | |
tree | 95bda2ad3033f782ceb991934439efcdd9eeae45 /indra/llui/llfolderview.cpp | |
parent | 7ccfbd7c285cc2ab0bbf569912f8e9e2d5c1df72 (diff) |
SL-19273 Show empty folder message for empty folders regardless of filter state
Diffstat (limited to 'indra/llui/llfolderview.cpp')
-rw-r--r-- | indra/llui/llfolderview.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/llui/llfolderview.cpp b/indra/llui/llfolderview.cpp index 46a7057240..734a7599aa 100644 --- a/indra/llui/llfolderview.cpp +++ b/indra/llui/llfolderview.cpp @@ -665,7 +665,7 @@ void LLFolderView::draw() } else if (mShowEmptyMessage) { - mStatusTextBox->setValue(getFolderViewModel()->getStatusText()); + mStatusTextBox->setValue(getFolderViewModel()->getStatusText(mItems.empty() && mFolders.empty())); mStatusTextBox->setVisible( TRUE ); // firstly reshape message textbox with current size. This is necessary to |