From 8d1d9341324bd0e0cf99a7fd4737d151695d662b Mon Sep 17 00:00:00 2001 From: Miguel Jacq Date: Mon, 8 Nov 2021 14:49:37 +1100 Subject: [PATCH] Set the path QLabel of the HistoryItem to plain text format --- desktop/src/onionshare/tab/mode/history.py | 1 + 1 file changed, 1 insertion(+) diff --git a/desktop/src/onionshare/tab/mode/history.py b/desktop/src/onionshare/tab/mode/history.py index 091905f7..4e8fcf8e 100644 --- a/desktop/src/onionshare/tab/mode/history.py +++ b/desktop/src/onionshare/tab/mode/history.py @@ -481,6 +481,7 @@ class IndividualFileHistoryItem(HistoryItem): self.common.gui.css["history_individual_file_timestamp_label"] ) self.path_label = QtWidgets.QLabel(self.path) + self.path_label.setTextFormat(QtCore.Qt.PlainText) self.path_label.setStyleSheet(self.common.gui.css["history_default_label"]) self.status_code_label = QtWidgets.QLabel()