mirror of
https://github.com/0x192/universal-android-debloater.git
synced 2026-04-28 03:39:38 +00:00
fix: action button error when multi_user_mode is disabled
Regression introduced in 5fa6fea353
(No public release affected)
This commit is contained in:
parent
4ef967e26c
commit
11f27c671c
1 changed files with 9 additions and 6 deletions
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue