mirror of https://github.com/procxx/kepka.git
Make "All Users" checkbox behave like the "All Actions" checkbox
This commit is contained in:
parent
04b9d4bdb5
commit
f11339361d
|
@ -284,9 +284,10 @@ void FilterBox::Inner::createAllUsersCheckbox(const FilterValue &filter) {
|
||||||
_allUsers = addRow(object_ptr<Ui::Checkbox>(this, tr::lng_admin_log_filter_all_admins(tr::now), filter.allUsers, st::adminLogFilterCheckbox), st::adminLogFilterSkip);
|
_allUsers = addRow(object_ptr<Ui::Checkbox>(this, tr::lng_admin_log_filter_all_admins(tr::now), filter.allUsers, st::adminLogFilterCheckbox), st::adminLogFilterSkip);
|
||||||
_allUsers->checkedChanges(
|
_allUsers->checkedChanges(
|
||||||
) | rpl::start_with_next([=](bool checked) {
|
) | rpl::start_with_next([=](bool checked) {
|
||||||
if (checked && !std::exchange(_restoringInvariant, true)) {
|
if (!std::exchange(_restoringInvariant, true)) {
|
||||||
|
auto allChecked = _allUsers->checked();
|
||||||
for_const (auto &&checkbox, _admins) {
|
for_const (auto &&checkbox, _admins) {
|
||||||
checkbox->setChecked(true);
|
checkbox->setChecked(allChecked);
|
||||||
}
|
}
|
||||||
_restoringInvariant = false;
|
_restoringInvariant = false;
|
||||||
if (_changedCallback) {
|
if (_changedCallback) {
|
||||||
|
|
Loading…
Reference in New Issue