Skip to content

Commit 85c9a06

Browse files
committed
comment change and testing conditional removed
1 parent 6062cde commit 85c9a06

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

usr/lib/webapp-manager/quickstart.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
{
3232
"key": "apple",
3333
"label": "Apple",
34-
"icon": "main-apple", #changed from web-apple
34+
"icon": "web-apple", #changed from web-apple
3535
"color": "#555555",
3636
"apps": [
3737
{"name": "iCloud Mail", "url": "https://www.icloud.com/mail", "icon": "web-apple", "desc": "iCloud email"},

usr/lib/webapp-manager/webapp-manager.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -217,7 +217,7 @@ def __init__(self, application):
217217
self.load_webapps()
218218

219219
# Show quickstart when the user has no apps yet (first run or clean slate)
220-
if len([w for w in self.manager.get_webapps() if w.is_valid]) >= 1: # changed from < for testing
220+
if len([w for w in self.manager.get_webapps() if w.is_valid]) <= 1:
221221
dialog = QuickstartDialog(self.window, self.manager)
222222
dialog.run()
223223
self.load_webapps() # refresh list if apps were just created

0 commit comments

Comments
 (0)