Merge pull request #11 from CMDR-Kiel42/spansh_package

Actually show system suggestions on Windows
This commit is contained in:
CMDR-Kiel42 2019-08-12 20:38:08 +02:00 committed by GitHub
commit 089726dec4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
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