From 2b2822bcbeffe3479de09b5ac7d1e2e2f7ed18d6 Mon Sep 17 00:00:00 2001 From: Hugo Posnic Date: Thu, 25 May 2017 16:28:59 +0200 Subject: [PATCH] Fix openning of links --- src/manjaro_hello.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/manjaro_hello.py b/src/manjaro_hello.py index 473dacd..8d2befa 100644 --- a/src/manjaro_hello.py +++ b/src/manjaro_hello.py @@ -233,7 +233,7 @@ class Hello(): def on_link_clicked(self, link, _=None): """Event for clicked link.""" - webbrowser.open_new_tab(self.urls[link.get_name()]) + webbrowser.open_new_tab(self.preferences["urls"][link.get_name()]) def on_delete_window(self, *args): """Event to quit app."""