From 44c89afe6d7d34c81438458771a510cc0239da08 Mon Sep 17 00:00:00 2001 From: 8uziak Date: Thu, 2 May 2024 23:48:41 +0200 Subject: [PATCH] changed a default white text cursor to always appear black --- gui/gui.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/gui/gui.py b/gui/gui.py index 17f2582a..dac6b54b 100644 --- a/gui/gui.py +++ b/gui/gui.py @@ -120,13 +120,16 @@ def make_label(master, x, y, h, w, *args, **kwargs): filePath_entry_img = canvas.create_image(650.5, 329.5, image=text_box_bg) token_entry = tk.Entry(bd=0, bg="#F6F7F9",fg="#000716", highlightthickness=0) +token_entry.config(insertbackground='black') token_entry.place(x=490.0, y=137+25, width=321.0, height=35) token_entry.focus() URL_entry = tk.Entry(bd=0, bg="#F6F7F9", fg="#000716", highlightthickness=0) +URL_entry.config(insertbackground='black') URL_entry.place(x=490.0, y=218+25, width=321.0, height=35) path_entry = tk.Entry(bd=0, bg="#F6F7F9", fg="#000716", highlightthickness=0) +path_entry.config(insertbackground='black') path_entry.place(x=490.0, y=299+25, width=321.0, height=35) path_picker_img = tk.PhotoImage(file = ASSETS_PATH / "path_picker.png")