From 68a286d44a263f7adf328be62854d58260fb9828 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Philipp=20H=C3=B6rist?= Date: Mon, 15 Oct 2018 07:55:16 +0200 Subject: [PATCH] [acronyms] Use absolute path --- acronyms_expander/gtk/config.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/acronyms_expander/gtk/config.py b/acronyms_expander/gtk/config.py index 706551a..7a4fa02 100644 --- a/acronyms_expander/gtk/config.py +++ b/acronyms_expander/gtk/config.py @@ -38,7 +38,7 @@ class ConfigDialog(Gtk.ApplicationWindow): self.set_destroy_with_parent(True) ui_path = Path(__file__).parent - self._ui = get_builder(ui_path / 'config.ui') + self._ui = get_builder(ui_path.resolve() / 'config.ui') self._plugin = plugin