diff --git a/CHANGELOG.md b/CHANGELOG.md index 0eaa9bc..6f5ce93 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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 diff --git a/SpanshRouter/AutoCompleter.py b/SpanshRouter/AutoCompleter.py index 4607527..59e4535 100755 --- a/SpanshRouter/AutoCompleter.py +++ b/SpanshRouter/AutoCompleter.py @@ -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): diff --git a/version.json b/version.json index 8f9174b..abae0d9 100644 --- a/version.json +++ b/version.json @@ -1 +1 @@ -2.1.2 \ No newline at end of file +2.1.3 \ No newline at end of file