From 4f1c69984e90531c9caab23aca74c691107375d1 Mon Sep 17 00:00:00 2001 From: CMDR-Kiel42 Date: Mon, 12 Aug 2019 20:36:30 +0200 Subject: [PATCH] Actually show system suggestions on Windows --- CHANGELOG.md | 4 ++++ SpanshRouter/AutoCompleter.py | 2 +- version.json | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) 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