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 EF4DC11EEF6 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 DB1CA61879; 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 2/2] Make GtkLabels selectable Date: Thu, 21 Jul 2022 23:17:00 +0200 Message-Id: <20220721211700.62004-2-devrtz@fortysixandtwo.eu> X-Mailer: git-send-email 2.35.1 In-Reply-To: <20220721211700.62004-1-devrtz@fortysixandtwo.eu> References: <20220721211700.62004-1-devrtz@fortysixandtwo.eu> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit This allows copy and pasting from the UI. --- src/pages.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/pages.py b/src/pages.py index 2475553..b2f5d87 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, + 'selectable' : True, 'track-visited-links' : False, 'wrap' : False, } @@ -406,6 +407,7 @@ class EventDetailPage(BasePage): LBL_PROPS = { 'justify': Gtk.Justification.LEFT, 'halign' : Gtk.Align.START, + 'selectable' : True, 'track-visited-links' : False, 'wrap' : True, } -- 2.35.1