updated icons and added icon attribution to about dialog
This commit is contained in:
parent
ff7909e97a
commit
dd43fae62a
3 changed files with 6 additions and 0 deletions
Binary file not shown.
Before Width: | Height: | Size: 2 KiB After Width: | Height: | Size: 1.5 KiB |
Binary file not shown.
Before Width: | Height: | Size: 2.1 KiB After Width: | Height: | Size: 1.5 KiB |
|
@ -1,4 +1,5 @@
|
||||||
import tkinter as tk
|
import tkinter as tk
|
||||||
|
from tkinter import ttk
|
||||||
|
|
||||||
from core.gui.dialogs.dialog import Dialog
|
from core.gui.dialogs.dialog import Dialog
|
||||||
from core.gui.widgets import CodeText
|
from core.gui.widgets import CodeText
|
||||||
|
@ -42,3 +43,8 @@ class AboutDialog(Dialog):
|
||||||
codetext.text.insert("1.0", LICENSE)
|
codetext.text.insert("1.0", LICENSE)
|
||||||
codetext.text.config(state=tk.DISABLED)
|
codetext.text.config(state=tk.DISABLED)
|
||||||
codetext.grid(sticky="nsew")
|
codetext.grid(sticky="nsew")
|
||||||
|
|
||||||
|
label = ttk.Label(
|
||||||
|
self.top, text="Icons from https://icons8.com", anchor=tk.CENTER
|
||||||
|
)
|
||||||
|
label.grid(sticky="ew")
|
||||||
|
|
Loading…
Add table
Reference in a new issue