summaryrefslogtreecommitdiff
path: root/plugins
diff options
context:
space:
mode:
authormathieui <mathieui@mathieui.net>2021-03-26 12:49:20 +0100
committermathieui <mathieui@mathieui.net>2021-04-02 17:44:36 +0200
commitf80e9d9ddeb17e302240bcfd0051f37fb0ce2854 (patch)
tree5d8e374c830ede829eca4eea387914114fa6b7a1 /plugins
parentef772d8b2aaba697549b63173de9e0291691d11c (diff)
downloadpoezio-f80e9d9ddeb17e302240bcfd0051f37fb0ce2854.tar.gz
poezio-f80e9d9ddeb17e302240bcfd0051f37fb0ce2854.tar.bz2
poezio-f80e9d9ddeb17e302240bcfd0051f37fb0ce2854.tar.xz
poezio-f80e9d9ddeb17e302240bcfd0051f37fb0ce2854.zip
fix: forgotten tab names set
Diffstat (limited to 'plugins')
-rwxr-xr-xplugins/qr.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/qr.py b/plugins/qr.py
index 9b05750d..a6d325aa 100755
--- a/plugins/qr.py
+++ b/plugins/qr.py
@@ -73,7 +73,7 @@ class QrTab(Tab):
Tab.__init__(self, core)
self.state = 'highlight'
self.text = qr
- self.name = qr
+ self._name = qr
self.topic_win = windows.Topic()
self.topic_win.set_message(qr)
self.qr_win = QrWindow(qr)