Skip to content

Commit

Permalink
Corrected HBB download status bar text
Browse files Browse the repository at this point in the history
  • Loading branch information
dhtdht020 committed Dec 1, 2021
1 parent 30470d0 commit 34d1ccf
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion xosc_dl.py
Original file line number Diff line number Diff line change
Expand Up @@ -374,7 +374,10 @@ def trugh(self, text):
return QObject.tr(self, text)

def download_button(self, hbb=False):
self.status_message(f"Downloading {self.current_app['display_name']} from Open Shop Channel..")
if hbb:
self.status_message(f"Downloading Homebrew Browser from Open Shop Channel..")
else:
self.status_message(f"Downloading {self.current_app['display_name']} from Open Shop Channel..")

if self.sender():
object_name = self.sender().objectName()
Expand Down

0 comments on commit 34d1ccf

Please sign in to comment.