Compare commits
2 Commits
6850ce72cc
...
c7c79aef05
Author | SHA1 | Date |
---|---|---|
|
c7c79aef05 | |
|
4ce3f2c65b |
|
@ -127,6 +127,16 @@ label_4.pack(side="left", fill="x", expand=True)
|
||||||
label_fecha_hora.pack(side="right", 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")
|
# 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 = threading.Thread(target=update_time, args=(label_fecha_hora,))
|
||||||
update_thread.daemon = True # Hacemos el hilo un demonio para que termine con la app
|
update_thread.daemon = True # Hacemos el hilo un demonio para que termine con la app
|
||||||
|
|
Loading…
Reference in New Issue