Skip to content
Permalink
Browse files
Worked on layout
  • Loading branch information
hortonr6 committed Nov 10, 2017
1 parent c72f128 commit 73790e995278ae622ebc7dd305735234260149f1
Showing 1 changed file with 3 additions and 3 deletions.
@@ -66,12 +66,12 @@ chatHistory = tk.Text(window)
chatHistory.pack(padx=30)
chatHistory.configure(state="disabled")

userInput = tk.Entry(window)
userInput = tk.Entry(window, width=50)
userInput.pack(pady=15)
userInput.bind("<Return>", sendMessage)

sendBtn = tk.Button(window, command=sendMessage)
sendBtn.pack(side="left", pady=15)
sendBtn = tk.Button(window, text="Send Message", command=sendMessage)
sendBtn.pack(side="right", pady=15)

receiveMessage(i) #Receives the initial message from the chatbot
i = i + 1

0 comments on commit 73790e9

Please sign in to comment.