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)