Skip to content

Commit

Permalink
Fix #1494: Use properly themed entry widget
Browse files Browse the repository at this point in the history
  • Loading branch information
TeamSpen210 committed Feb 21, 2021
1 parent fb97d06 commit fad9000
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/app/item_search.py
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ def later():
search_var = tk.StringVar()
search_var.trace_add('write', on_type)

searchbar = tk.Entry(frm, textvariable=search_var)
searchbar = ttk.Entry(frm, textvariable=search_var)
searchbar.grid(row=0, column=1, sticky='EW')

_type_cback = on_type
Expand Down

0 comments on commit fad9000

Please # to comment.