From 851da7eb155589f7b79cdcebc54bc62ea4a45448 Mon Sep 17 00:00:00 2001 From: Sebastian Wehling-Benatelli Date: Mon, 23 Nov 2015 11:41:04 +0100 Subject: [PATCH] re-design of the properties tabbed window --- pylot/core/util/widgets.py | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/pylot/core/util/widgets.py b/pylot/core/util/widgets.py index 4e1267f3..307b7e39 100644 --- a/pylot/core/util/widgets.py +++ b/pylot/core/util/widgets.py @@ -930,7 +930,13 @@ class LocalisationTab(PropTab): self.locToolComboBox.setCurrentIndex(toolind) + curroot = settings.value("loc/tool", None) + if curtool is not None: + rootlabel = QLabel("{0} root dircetory".format(curtool)) + else: + rootlabel = QLabel("root dircetory") + rootlabel.setDisabled() class NewEventDlg(QDialog):