Skip to content
Draft
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions src/views/tk_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ def configure_app():
customtkinter.set_appearance_mode("dark")
root = customtkinter.CTk()
# root.iconbitmap("src/views/icon.ico")
toolbar = CTkFrame(root, pady=2)
toolbar = CTkFrame(root)

# Create a new Font object with the desired font family and size
my_font_size = read_config_parameter("options.editor_settings.font_size")
Expand All @@ -84,10 +84,10 @@ def configure_app():
root, wrap="word", height=20, width=60, undo=True
)
text = CTkTextbox(
root,
wrap="word",
font=my_font,
borderwidth=0,
highlightthickness=0,
border_width=0,
undo=True,
)
status_label_var = StringVar()
Expand Down