SyncTk/classes/custom/themed_frame.py

13 lines
284 B
Python
Raw Normal View History

2023-01-22 21:06:55 +02:00
from tkinter import Misc
2023-01-22 18:53:55 +02:00
import sv_ttk
from tkinter.ttk import Frame
from modules.utils import get_string_mode
class ThemedFrame(Frame):
2023-01-22 21:06:55 +02:00
def __init__(self, master: Misc, **kwargs) -> None:
2023-01-22 18:53:55 +02:00
super().__init__(master, **kwargs)
sv_ttk.set_theme(get_string_mode())