mirror of https://github.com/procxx/kepka.git
Fix filter chats list edit box title.
This commit is contained in:
parent
e36a66b971
commit
3c0ee9fa20
|
@ -357,6 +357,7 @@ void EditFilterChatsListController::prepareViewHook() {
|
||||||
delegate()->peerListSetAboveWidget(prepareTypesList());
|
delegate()->peerListSetAboveWidget(prepareTypesList());
|
||||||
delegate()->peerListAddSelectedPeers(
|
delegate()->peerListAddSelectedPeers(
|
||||||
_peers | ranges::view::transform(&History::peer));
|
_peers | ranges::view::transform(&History::peer));
|
||||||
|
updateTitle();
|
||||||
}
|
}
|
||||||
|
|
||||||
object_ptr<Ui::RpWidget> EditFilterChatsListController::prepareTypesList() {
|
object_ptr<Ui::RpWidget> EditFilterChatsListController::prepareTypesList() {
|
||||||
|
@ -419,7 +420,13 @@ auto EditFilterChatsListController::createRow(not_null<History*> history)
|
||||||
}
|
}
|
||||||
|
|
||||||
void EditFilterChatsListController::updateTitle() {
|
void EditFilterChatsListController::updateTitle() {
|
||||||
const auto count = delegate()->peerListSelectedRowsCount();
|
auto types = 0;
|
||||||
|
for (const auto flag : kAllTypes) {
|
||||||
|
if (_selected & flag) {
|
||||||
|
++types;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
const auto count = delegate()->peerListSelectedRowsCount() - types;
|
||||||
const auto additional = qsl("%1 / %2").arg(count).arg(kMaxExceptions);
|
const auto additional = qsl("%1 / %2").arg(count).arg(kMaxExceptions);
|
||||||
delegate()->peerListSetAdditionalTitle(rpl::single(additional));
|
delegate()->peerListSetAdditionalTitle(rpl::single(additional));
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue