Skip to content

Commit

Permalink
Clarified room ID format
Browse files Browse the repository at this point in the history
Added "#" before room ID box to clarify that the "#" is not part of the room ID
  • Loading branch information
gizmo4487 committed May 15, 2020
1 parent 7dff998 commit 485c941
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions tetrio-chat.py
Original file line number Diff line number Diff line change
Expand Up @@ -296,6 +296,7 @@ def enterkeyjoin(event):

# Room join screen
separator = ttk.Frame(roomframe,padding="4 4 4 4").grid(column=1, row=1, padx=215)
roomPrefix = ttk.Label(roomframe, text="#").grid(column=1, row=8, sticky="E")
joinlabel = ttk.Label(roomframe, text="Join Room", style='subtitle.TLabel').grid(column=2, row=1, sticky="N")
roomlistbox = tk.Listbox(roomframe, height=10)
roomlistbox.grid(column=2, row=2, sticky="N", pady=8)
Expand Down

0 comments on commit 485c941

Please sign in to comment.