Files
CCMA/src/ccma/ui/sections.py
T
2026-06-27 10:36:18 +02:00

11 lines
311 B
Python

from __future__ import annotations
import tkinter as tk
from tkinter import ttk
def titled_frame(parent: tk.Misc, title: str) -> ttk.LabelFrame:
frame = ttk.LabelFrame(parent, padding=(12, 10))
frame.configure(labelwidget=ttk.Label(frame, text=title, style="TimelineHeader.TLabel"))
return frame