Skip to content

Commit

Permalink
Add installer launch, and add a comment about why the identifier tag …
Browse files Browse the repository at this point in the history
…is filtered

Signed-off-by: Jim Hawkins <sjjhsjjhsjjh@gmail.com>
  • Loading branch information
sjjhsjjh committed May 3, 2024
1 parent 099e415 commit 3da3133
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/gui/pages/page_about.py
Original file line number Diff line number Diff line change
Expand Up @@ -213,6 +213,7 @@ def check_updates(self, event, anchor):

def install_update(self, event, anchor):
logger.info(f'install_update(,{event.type=},{anchor=})')
launched = UpdateManager().launch_installer()

def enter(self):
super().enter()
Expand Down Expand Up @@ -281,6 +282,8 @@ def stubbed(cls, identifier, observable, page, *tags):
, "-".join((identifier, "finish"))
, "".join((identifier, "eol"))
, observable
#
# Filter out the identifier tag which will be added by the setter.
, tuple(tag for tag in tags if tag != identifier)
, page
)
Expand Down

0 comments on commit 3da3133

Please sign in to comment.