Skip to content

Commit

Permalink
Add icons attribution
Browse files Browse the repository at this point in the history
  • Loading branch information
ObaraEmmanuel committed Jan 20, 2024
1 parent 51fa412 commit ef9f9b7
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions studio/ui/about.py
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,10 @@ def __init__(self, parent):

Label(self, text="Make designing user interfaces in python a breeze!",
**self.style.text).pack(side="top", fill="y", pady=5)
f = Frame(self, **self.style.surface)
f.pack(side="top")
Label(f, text="Icons by", **self.style.text_passive).pack(side="left")
Hyperlink(f, link="https://icons8.com", text="Icons8").pack(side="right")
copy_right = "Copyright © 2019-2023 Hoverset group"
Label(self, text=copy_right, **self.style.text_passive).pack(side="top", fill="y")
self.pack(fill="both", expand=True)
Expand Down

0 comments on commit ef9f9b7

Please sign in to comment.