From 6bb4fa07c583bc0258ffdb740ecc1b6ad8133eab Mon Sep 17 00:00:00 2001 From: Ilya Zhuravlev Date: Sat, 17 Jul 2021 15:48:52 -0400 Subject: [PATCH] main_window: update URL for linux udev --- src/main/python/main_window.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/python/main_window.py b/src/main/python/main_window.py index 76047fd..f28fd55 100644 --- a/src/main/python/main_window.py +++ b/src/main/python/main_window.py @@ -85,7 +85,7 @@ class MainWindow(QMainWindow): if sys.platform.startswith("linux"): no_devices += '

On Linux you need to set up a custom udev rule for keyboards to be detected. ' \ 'Follow the instructions linked below:
' \ - 'https://get.vial.today/getting-started/linux-udev.html' + 'https://get.vial.today/manual/linux-udev.html' self.lbl_no_devices = QLabel(tr("MainWindow", no_devices)) self.lbl_no_devices.setTextFormat(Qt.RichText) self.lbl_no_devices.setAlignment(Qt.AlignCenter)