Skip to content

Commit

Permalink
Fix not proper custom selecting with "not select all" option (#632)
Browse files Browse the repository at this point in the history
  • Loading branch information
qarmin authored Feb 18, 2022
1 parent 2b86e90 commit ff71e2b
Showing 1 changed file with 8 additions and 6 deletions.
14 changes: 8 additions & 6 deletions czkawka_gui/src/connect_things/connect_popovers.rs
Original file line number Diff line number Diff line change
Expand Up @@ -449,14 +449,16 @@ fn popover_custom_select_unselect(
}
}

if need_to_change_thing {
if select_things {
if is_selected {
number_of_already_selected_things += 1;
} else {
if select_things {
if is_selected {
number_of_already_selected_things += 1;
} else {
if need_to_change_thing {
vec_of_iters.push(iter);
}
} else {
}
} else {
if need_to_change_thing {
vec_of_iters.push(iter);
}
}
Expand Down

0 comments on commit ff71e2b

Please sign in to comment.