From 34440e8a97e8485e73e2998d0687be4edd06ad19 Mon Sep 17 00:00:00 2001 From: John Date: Thu, 4 Dec 2025 23:45:21 +0100 Subject: [PATCH] update: increased font size in systemwide text --- gui/__main__.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gui/__main__.py b/gui/__main__.py index 97262e1..01c85c6 100755 --- a/gui/__main__.py +++ b/gui/__main__.py @@ -6963,7 +6963,7 @@ class Settings(Page): description = QLabel("Control whether HydraVeil configures a sudo policy so system-wide WireGuard profiles can be started without entering your sudo password.") description.setWordWrap(True) - description.setStyleSheet(f"color: white; font-size: 22px; font-family: Arial;") + description.setStyleSheet(f"color: white; font-size: 16px; font-family: Arial;") layout.addWidget(description) status_layout = QHBoxLayout() @@ -8117,7 +8117,7 @@ class SystemwidePromptPage(Page): description = QLabel(self) description.setGeometry(80, 100, 640, 120) description.setWordWrap(True) - description.setStyleSheet("font-size: 14px; color: cyan;") + description.setStyleSheet("font-size: 17px; color: cyan;") description.setText("If you're using Systemwide profiles, you may wish to enable them without having to enter the sudo password each time for convenience. This requires the sudo password to setup profiles and disable them (for security), but not to turn it on each time. You can choose to set this up now or later in the options menu.") icon_label = QLabel(self)