From 8992447a3732104cb8527ed360b11e5baa79ccb0 Mon Sep 17 00:00:00 2001 From: John Date: Tue, 24 Mar 2026 01:22:46 +0100 Subject: [PATCH] update: enabled changing locations for system profiles --- gui/__main__.py | 6 ------ 1 file changed, 6 deletions(-) diff --git a/gui/__main__.py b/gui/__main__.py index e01a9f8..8794bc8 100755 --- a/gui/__main__.py +++ b/gui/__main__.py @@ -5448,7 +5448,6 @@ class EditorPage(Page): prev_button.setIcon(QIcon(outline_pix)) prev_button.setIconSize(prev_button.size()) - # Apply green styling for location and browser buttons to indicate sync requirement if (key == 'location' or key == 'browser') and not self.connection_manager.is_synced(): prev_button.setStyleSheet(""" QPushButton { @@ -5495,7 +5494,6 @@ class EditorPage(Page): next_button.setIcon(QIcon(outline_pix_r)) next_button.setIconSize(next_button.size()) - # Apply green styling for location and browser buttons to indicate sync requirement if (key == 'location' or key == 'browser') and not self.connection_manager.is_synced(): next_button.setStyleSheet(""" QPushButton { @@ -5518,10 +5516,6 @@ class EditorPage(Page): prev_button.setDisabled(True) next_button.setDisabled(True) - if connection == 'system-wide' and key == 'location': - prev_button.setDisabled(True) - next_button.setDisabled(True) - if connection == 'system-wide' and (key == 'browser' or key == 'dimentions'): prev_button.setVisible(False) next_button.setVisible(False)