abstand zwischen den buttons
This commit is contained in:
parent
d315ddc8e9
commit
8e0bb82caa
|
|
@ -46,7 +46,6 @@ name_entry.focus()
|
||||||
# textbox
|
# textbox
|
||||||
message_label = tk.Label(journal, text = "Deine Nachricht:")
|
message_label = tk.Label(journal, text = "Deine Nachricht:")
|
||||||
message_label.pack(fill = 'x', expand = True)
|
message_label.pack(fill = 'x', expand = True)
|
||||||
#message_text = ttk.Text(journal, height = 50)
|
|
||||||
message_text = tk.Text(journal, height = 50)
|
message_text = tk.Text(journal, height = 50)
|
||||||
message_text.pack()
|
message_text.pack()
|
||||||
|
|
||||||
|
|
@ -68,19 +67,16 @@ def save_and_quit_button_clicked():
|
||||||
button_send = ttk.Button(
|
button_send = ttk.Button(
|
||||||
journal,
|
journal,
|
||||||
text = "Abschicken",
|
text = "Abschicken",
|
||||||
# command = lambda: showinfo(title = "Information", message = "Deine Nachricht wurde gespeichert")
|
|
||||||
command = lambda: send_button_clicked()
|
command = lambda: send_button_clicked()
|
||||||
)
|
)
|
||||||
button_send.pack()
|
button_send.pack(pady = 15, padx = 15)
|
||||||
|
|
||||||
# Quit Button
|
# Quit Button
|
||||||
button_quit = ttk.Button(
|
button_quit = ttk.Button(
|
||||||
journal,
|
journal,
|
||||||
text = "Speichern und Beenden",
|
text = "Speichern und Beenden",
|
||||||
#command = lambda: journal.quit()
|
|
||||||
command = lambda: save_and_quit_button_clicked()
|
command = lambda: save_and_quit_button_clicked()
|
||||||
)
|
)
|
||||||
|
|
||||||
button_quit.pack()
|
button_quit.pack()
|
||||||
|
|
||||||
journal.mainloop()
|
journal.mainloop()
|
||||||
Loading…
Reference in New Issue
Block a user