This commit is contained in:
Juanjo 2024-11-28 18:01:37 +01:00
parent 6850ce72cc
commit 4ce3f2c65b
1 changed files with 9 additions and 0 deletions

View File

@ -127,6 +127,15 @@ label_4.pack(side="left", fill="x", expand=True)
label_fecha_hora.pack(side="right", fill="x", expand=True)
# barra_estado.grid(row=1, column=0, columnspan=3, sticky="ew")
label_url = tk.Label(frame_izquierdo,
text="Introduce URL:", font=("Arial", 12), padx=10, pady=10)
label_url.pack()
text = tk.Text(frame_izquierdo, height=1, width=20)
text.pack(pady=5)
label_chat = tk.Label(frame_derecho,
text="C H A T", font=("Arial", 16), padx=10, pady=10)
label_chat.pack()
update_thread = threading.Thread(target=update_time, args=(label_fecha_hora,))
update_thread.daemon = True # Hacemos el hilo un demonio para que termine con la app