Skip to content

Commit

Permalink
Style: Added app name and window icon
Browse files Browse the repository at this point in the history
  • Loading branch information
R0land013 committed Apr 21, 2023
1 parent 2f15c3d commit 9621c71
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
7 changes: 5 additions & 2 deletions main.py
Original file line number Diff line number Diff line change
@@ -1,8 +1,11 @@
from easy_mvp.application_manager import ApplicationManager
from easy_mvp.intent import Intent
from presenter.main import MainPresenter
from util.resources_path import resource_path


app = ApplicationManager()
app = ApplicationManager(
app_name='Blue Nauta',
window_icon_path=resource_path('favicon.ico'),
)
initial_intent = Intent(MainPresenter)
app.execute_app(initial_intent)
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
easy-mvp>=0.1.1
easy-mvp==0.2.0
git+https://github.com/R0land013/nautapy.git
sqlalchemy
cryptography

0 comments on commit 9621c71

Please sign in to comment.