Skip to content

Commit

Permalink
fluent design + icon
Browse files Browse the repository at this point in the history
  • Loading branch information
rohankishore committed Aug 17, 2024
1 parent 7ea082c commit 81fae8e
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
4 changes: 3 additions & 1 deletion src/AnimeSearch.py
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,9 @@ def __init__(self, parent=None):

layout.addWidget(QLabel(""))

layout.addWidget(QLabel("Anilist Anime ID [OPTIONAL] [https://anilist.co/]"))
anilist_label = CaptionLabel()
anilist_label.setText("Anilist Anime ID [OPTIONAL] [https://anilist.co/]")
layout.addWidget(anilist_label)

self.anilist_entry = LineEdit(self)
self.anilist_entry.setPlaceholderText(
Expand Down
Binary file added src/icons/icon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 2 additions & 2 deletions src/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -45,8 +45,8 @@ def initNavigation(self):

def initWindow(self):
self.resize(500, 160)
self.setWindowIcon(QIcon('resource/icon.ico'))
self.setWindowTitle('ZenNotes')
self.setWindowIcon(QIcon('icons/icon.png'))
self.setWindowTitle('AnimeSnap')

w, h = 1200, 800
self.move(w // 2 - self.width() // 2, h // 2 - self.height() // 2)
Expand Down

0 comments on commit 81fae8e

Please sign in to comment.