Saadmairaj / tkterminal

Terminal widget for Tkinter library.
https://pypi.org/project/tkterminal
Apache License 2.0
58 stars 6 forks source link

When i'm writing the letter "K" it clear the line. #13

Open WaterWalo opened 1 year ago

WaterWalo commented 1 year ago

I'm gonna show you an example of what I mean.

First of all, i'm writing anything in the terminal:

Capture

When i'm writing the letter K it clear my line: image

Is that normal ? or is my configuration wrong ?

I'm sending you my configuration : root = tk.Tk() terminal = Terminal( pady=5, padx=5, background=DARK_BACKGROUND_COLOR, borderwidth=4, foreground=LIGHT_GREEN) terminal.basename = "MyPrivacy$" terminal.linebar = True terminal.tag_config("basename", foreground=PRIMARY_COLOR) terminal.pack(expand=True, fill='both') b1 = tk.Button( root, text="Raccourci 1", fg="Blue", command=lambda: terminal.run_command('C:\\', 'y')) b1.pack() root.mainloop()