diff --git a/gui/__main__.py b/gui/__main__.py index c26c0e8..b956d88 100755 --- a/gui/__main__.py +++ b/gui/__main__.py @@ -3854,15 +3854,8 @@ class LocationPage(Page): def show_location(self, location): self.initial_display.hide() - locations = self.connection_manager.get_location_info(location) - operator_name = locations.operator.name if locations and hasattr( - locations, 'operator') else "" - - if operator_name != 'Simplified Privacy': - max_size = QtCore.QSize(300, 300) - target_size = self.display.size().boundedTo(max_size) - else: - target_size = self.display.size() + max_size = QtCore.QSize(300, 300) + target_size = self.display.size().boundedTo(max_size) self.display.setPixmap(QPixmap(os.path.join(self.btn_path, f"icon_{location}.png")).scaled( target_size, Qt.AspectRatioMode.KeepAspectRatio)) @@ -5766,7 +5759,7 @@ class LocationVerificationPage(Page): def setup_ui(self): location_display = QLabel(self) - location_display.setGeometry(10, 0, 390, 520) + location_display.setGeometry(0, 0, 390, 520) location_display.setAlignment(Qt.AlignmentFlag.AlignCenter) icon_path = os.path.join( @@ -5783,11 +5776,8 @@ class LocationVerificationPage(Page): operator_name = locations.operator.name if locations and hasattr( locations, 'operator') else "" - if operator_name != 'Simplified Privacy': - max_size = QtCore.QSize(250, 300) - target_size = location_display.size().boundedTo(max_size) - else: - target_size = location_display.size() + max_size = QtCore.QSize(300, 300) + target_size = location_display.size().boundedTo(max_size) location_display.setPixmap(location_pixmap.scaled( target_size, Qt.AspectRatioMode.KeepAspectRatio, Qt.TransformationMode.SmoothTransformation)) @@ -7248,7 +7238,6 @@ class Settings(Page): "Error saving verification settings") def copy_verification_value(self, key): - """Copy the full verification value (not truncated) to clipboard.""" full_value = self.verification_full_values.get(key, "") if full_value and full_value != "N/A": clipboard = QApplication.clipboard() diff --git a/gui/resources/images/button_md_cu.png b/gui/resources/images/button_md_cu.png index 88d2643..ca5bda8 100755 Binary files a/gui/resources/images/button_md_cu.png and b/gui/resources/images/button_md_cu.png differ diff --git a/gui/resources/images/button_sg_02.png b/gui/resources/images/button_sg_02.png index 92ec771..3412859 100755 Binary files a/gui/resources/images/button_sg_02.png and b/gui/resources/images/button_sg_02.png differ