Actually show system suggestions on Windows

This commit is contained in:
CMDR-Kiel42 2019-08-12 20:36:30 +02:00
parent 8876fb1eb7
commit 4f1c69984e
3 changed files with 6 additions and 2 deletions

View File

@ -2,6 +2,10 @@
All notable changes to this project will be documented in this file.
## 2.1.3
- Bugfix: System suggestions actually show up when you type in either Source or Destination system inputs on Windows
## 2.1.2
- Fixed conflicts when other plugins used similar file names

View File

@ -121,7 +121,7 @@ class AutoCompleter(Entry, PlaceHolder):
if not self.lb_up:
info = self.grid_info()
if info:
self.lb.grid(row=info["row"]+1, columnspan=2)
self.lb.grid(row=int(info["row"])+1, columnspan=2)
self.lb_up = True
def hide_list(self):

View File

@ -1 +1 @@
2.1.2
2.1.3