mirror of
https://github.com/spalencsar/bearhub.git
synced 2026-07-07 00:04:15 +02:00
[view] improvement: only displaying a confirmation dialog for custom actions that start immediately
This commit is contained in:
@@ -11,7 +11,8 @@ class CustomSoftwareAction:
|
||||
requires_root: bool, manager: "SoftwareManager" = None,
|
||||
backup: bool = False, refresh: bool = True,
|
||||
i18n_confirm_key: str = None,
|
||||
requires_internet: bool = False):
|
||||
requires_internet: bool = False,
|
||||
requires_confirmation: bool = True):
|
||||
"""
|
||||
:param i18n_label_key: the i18n key that will be used to display the action name
|
||||
:param i18n_status_key: the i18n key that will be used to display the action name being executed
|
||||
@@ -23,6 +24,7 @@ class CustomSoftwareAction:
|
||||
:param refresh: if the a full app refresh should be done if the action succeeds
|
||||
:param i18n_confirm_key: action confirmation message
|
||||
:param requires_internet: if the action requires internet connection to be executed
|
||||
:param requires_confirmation: if a confirmation popup should be displayed to the user before calling the action
|
||||
"""
|
||||
self.i18n_label_key = i18n_label_key
|
||||
self.i18n_status_key = i18n_status_key
|
||||
@@ -34,6 +36,7 @@ class CustomSoftwareAction:
|
||||
self.refresh = refresh
|
||||
self.i18n_confirm_key = i18n_confirm_key
|
||||
self.requires_internet = requires_internet
|
||||
self.requires_confirmation = requires_confirmation
|
||||
|
||||
def __hash__(self):
|
||||
return self.i18n_label_key.__hash__() + self.i18n_status_key.__hash__() + self.manager_method.__hash__()
|
||||
|
||||
Reference in New Issue
Block a user