2
0
mirror of https://github.com/telegramdesktop/tdesktop synced 2025-09-01 15:05:56 +00:00

Enable / disable side bar based on filters.

This commit is contained in:
John Preston
2020-03-18 13:19:58 +04:00
parent 3c0ee9fa20
commit 4881981cf6
13 changed files with 41 additions and 32 deletions

View File

@@ -2546,11 +2546,11 @@ bool InnerWidget::chooseCollapsedRow() {
void InnerWidget::switchToFilter(FilterId filterId) {
clearSelection();
if (!Global::DialogsFiltersEnabled()
|| !ranges::contains(
session().data().chatsFilters().list(),
filterId,
&Data::ChatFilter::id)) {
const auto found = ranges::contains(
session().data().chatsFilters().list(),
filterId,
&Data::ChatFilter::id);
if (!found) {
filterId = 0;
}
stopReorderPinned();