From 0fdbc78e241230681f5b6ac6db0606ed5c6e3d9b Mon Sep 17 00:00:00 2001 From: Your Name Date: Fri, 2 May 2025 02:24:42 +0100 Subject: [PATCH] Increased sync page text margins --- gui/__main__.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/gui/__main__.py b/gui/__main__.py index 3be1f2a..7ca9ee3 100644 --- a/gui/__main__.py +++ b/gui/__main__.py @@ -5612,15 +5612,15 @@ class SyncScreen(Page): self.heading_label = QLabel("You're about to fetch data from\nSimplified Privacy.", self) - self.heading_label.setGeometry(15, 80, 750, 80) + self.heading_label.setGeometry(15, 80, 750, 100) self.heading_label.setStyleSheet("font-size: 36px; font-weight: bold; color: white;") self.data_description = QLabel("This data includes what plans, countries,\nbrowsers, and version upgrades are\navailable. As well as coordinating billing.", self) - self.data_description.setGeometry(22, 190, 750, 90) + self.data_description.setGeometry(22, 190, 750, 100) self.data_description.setStyleSheet("font-size: 26px; font-weight: bold; color: #ffff00;") self.instructions = QLabel("Use the toggle in the bottom right to\ndecide if you want to use Tor or not.\nThen hit \"Next\"", self) - self.instructions.setGeometry(22, 345, 750, 100) + self.instructions.setGeometry(22, 345, 750, 120) self.instructions.setStyleSheet("font-size: 30px; font-weight: bold; color: white;") self.arrow_label = QLabel(self)