mirror of
https://github.com/revanced/revanced-manager.git
synced 2025-06-12 12:47:37 +02:00
fix: Close confirmation dialog before downloading update
This commit is contained in:
@ -174,7 +174,10 @@ class HomeViewModel extends BaseViewModel {
|
||||
),
|
||||
CustomMaterialButton(
|
||||
label: I18nText('okButton'),
|
||||
onPressed: () => updateManager(context),
|
||||
onPressed: () {
|
||||
Navigator.of(context).pop();
|
||||
updateManager(context);
|
||||
},
|
||||
)
|
||||
],
|
||||
),
|
||||
|
Reference in New Issue
Block a user