Skip to content

Commit

Permalink
fix: action button error when multi_user_mode is disabled
Browse files Browse the repository at this point in the history
Regression introduced in 5fa6fea
(No public release affected)
  • Loading branch information
0x192 committed Apr 10, 2023
1 parent 4ef967e commit 11f27c6
Showing 1 changed file with 9 additions and 6 deletions.
15 changes: 9 additions & 6 deletions src/gui/views/list.rs
Original file line number Diff line number Diff line change
Expand Up @@ -227,12 +227,15 @@ impl List {
}
Command::none()
}
RowMessage::ActionPressed => Command::batch(build_action_pkg_commands(
&self.phone_packages,
selected_device,
&settings.device,
(i_user, i_package),
)),
RowMessage::ActionPressed => {
self.phone_packages[i_user][i_package].selected = true;
Command::batch(build_action_pkg_commands(
&self.phone_packages,
selected_device,
&settings.device,
(i_user, i_package),
))
}
RowMessage::PackagePressed => {
self.description = package.clone().description;
package.current = true;
Expand Down

3 comments on commit 11f27c6

@hitecht4
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

how to use this universal deabloater

@Lupillo07
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Como desactivar software 12 emui 12.0.0232(C69E2R1P1patch04)

@Lupillo07
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

How to deactivate software 12 emui 12.0.0232 (C69E2R1P1patch04)

Please sign in to comment.