From 6fc83b37c9cec14921d2c4629b2d3a21e431fa7a Mon Sep 17 00:00:00 2001 From: informatorius Date: Tue, 8 May 2018 16:13:15 +0200 Subject: [PATCH] #1181 inconsistent hilighting in inital screen of FAHControl On selecting a slot programmatically the same code like selecting it manually by user must be called to also select the corresponding queue item. --- fah/ClientConfig.py | 1 + 1 file changed, 1 insertion(+) diff --git a/fah/ClientConfig.py b/fah/ClientConfig.py index 14979af..ffef16c 100644 --- a/fah/ClientConfig.py +++ b/fah/ClientConfig.py @@ -438,6 +438,7 @@ class ClientConfig: # Restore selections if selected_row is not None: app.slot_status_tree.get_selection().select_iter(selected_row) + self.select_slot(app) if log_filter_row is not None: app.log_slot.set_active_iter(log_filter_row)