mirror of
https://github.com/telegramdesktop/tdesktop
synced 2025-09-01 15:05:56 +00:00
Added chats filters list to each exception row in edit chats filter box.
This commit is contained in:
@@ -7,7 +7,9 @@ https://github.com/telegramdesktop/tdesktop/blob/master/LEGAL
|
|||||||
*/
|
*/
|
||||||
#include "boxes/filters/edit_filter_chats_list.h"
|
#include "boxes/filters/edit_filter_chats_list.h"
|
||||||
|
|
||||||
|
#include "data/data_chat_filters.h"
|
||||||
#include "data/data_premium_limits.h"
|
#include "data/data_premium_limits.h"
|
||||||
|
#include "data/data_session.h"
|
||||||
#include "history/history.h"
|
#include "history/history.h"
|
||||||
#include "window/window_session_controller.h"
|
#include "window/window_session_controller.h"
|
||||||
#include "lang/lang_keys.h"
|
#include "lang/lang_keys.h"
|
||||||
@@ -125,7 +127,15 @@ Flag TypeRow::flag() const {
|
|||||||
}
|
}
|
||||||
|
|
||||||
ExceptionRow::ExceptionRow(not_null<History*> history) : Row(history) {
|
ExceptionRow::ExceptionRow(not_null<History*> history) : Row(history) {
|
||||||
if (peer()->isSelf()) {
|
auto filters = QStringList();
|
||||||
|
for (const auto &filter : history->owner().chatsFilters().list()) {
|
||||||
|
if (filter.contains(history) && filter.id()) {
|
||||||
|
filters << filter.title();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if (!filters.isEmpty()) {
|
||||||
|
setCustomStatus(filters.join(", "));
|
||||||
|
} else if (peer()->isSelf()) {
|
||||||
setCustomStatus(tr::lng_saved_forward_here(tr::now));
|
setCustomStatus(tr::lng_saved_forward_here(tr::now));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user