Authentication-Results: mail-b.sr.ht; dkim=none Received: from fortysixandtwo.eu (fortysixandtwo.eu [85.214.238.193]) by mail-b.sr.ht (Postfix) with ESMTPS id B4B7611EEF6 for <~fabrixxm/confy-dev@lists.sr.ht>; Thu, 21 Jul 2022 21:17:23 +0000 (UTC) Received: from localhost.localdomain (unknown [91.187.115.177]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits)) (No client certificate requested) by fortysixandtwo.eu (Postfix) with ESMTPSA id 783C261878; Thu, 21 Jul 2022 23:17:22 +0200 (CEST) From: Evangelos Ribeiro Tzaras To: ~fabrixxm/confy-dev@lists.sr.ht Cc: Evangelos Ribeiro Tzaras Subject: [PATCH 1/2] Don't track visited links in GtkLabel Date: Thu, 21 Jul 2022 23:16:59 +0200 Message-Id: <20220721211700.62004-1-devrtz@fortysixandtwo.eu> X-Mailer: git-send-email 2.35.1 MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Visited links might get mistaken for underlined text, so disable tracking visiting links. --- src/pages.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/pages.py b/src/pages.py index be772f5..2475553 100644 --- a/src/pages.py +++ b/src/pages.py @@ -203,6 +203,7 @@ class ConferencePage(BasePage): LBL_PROPS = { 'justify': Gtk.Justification.CENTER, 'halign' : Gtk.Align.CENTER, + 'track-visited-links' : False, 'wrap' : False, } @@ -405,6 +406,7 @@ class EventDetailPage(BasePage): LBL_PROPS = { 'justify': Gtk.Justification.LEFT, 'halign' : Gtk.Align.START, + 'track-visited-links' : False, 'wrap' : True, } -- 2.35.1