1
0
Fork 0
mirror of https://github.com/shlomif/PySolFC.git synced 2025-04-05 00:02:29 -04:00

Reduced extra window padding on the player options window.

This commit is contained in:
Joe R 2022-05-31 20:52:05 -04:00
parent f288362299
commit 90f79aa68b
2 changed files with 4 additions and 4 deletions

View file

@ -47,9 +47,9 @@ class PlayerOptionsDialog(MfxDialog):
#
frame = ttk.Frame(top_frame)
frame.pack(expand=True, fill='both', padx=5, pady=10)
widget = ttk.Label(frame, text=_("\nPlease enter your name"),
widget = ttk.Label(frame, text=_("Please enter your name"),
takefocus=0)
widget.grid(row=0, column=0, columnspan=2, sticky='ew', padx=0, pady=5)
widget.grid(row=0, column=0, columnspan=2, sticky='ew', padx=0, pady=0)
#
w = kw.get("e_width", 30) # width in characters
names = self.app.getAllUserNames()

View file

@ -87,10 +87,10 @@ class PlayerOptionsDialog(MfxDialog):
#
frame = tkinter.Frame(top_frame)
frame.pack(expand=True, fill='both', padx=5, pady=10)
widget = tkinter.Label(frame, text=_("\nPlease enter your name"),
widget = tkinter.Label(frame, text=_("Please enter your name"),
# justify='left', anchor='w',
takefocus=0)
widget.grid(row=0, column=0, columnspan=2, sticky='ew', padx=0, pady=5)
widget.grid(row=0, column=0, columnspan=2, sticky='ew', padx=0, pady=0)
w = kw.get("e_width", 30) # width in characters
self.player_var = tkinter.Entry(frame, exportselection=1, width=w)
self.player_var.insert(0, app.opt.player)