Compare commits

..

No commits in common. "c7c79aef0510681d018dab6485380a4957029345" and "6850ce72cc00b97f3b8361eadb45e7e7030787c1" have entirely different histories.

1 changed files with 0 additions and 10 deletions

View File

@ -127,16 +127,6 @@ 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