Dieser Commit ist enthalten in:
Claude Project Manager
2026-01-18 18:15:34 +01:00
Ursprung 4e82d5ef8f
Commit a25a26a01a
47 geänderte Dateien mit 4756 neuen und 2956 gelöschten Zeilen

Datei anzeigen

@ -41,12 +41,12 @@ class AboutDialog(QDialog):
# Get the theme-aware logo path
if self.theme_manager:
# Use theme manager to get correct logo based on current theme
logo_path = self.theme_manager.get_icon_path("intelsight-logo")
logo_path = self.theme_manager.get_icon_path("aegissight-logo")
else:
# Fallback to light logo if no theme manager
current_dir = os.path.dirname(os.path.abspath(__file__))
parent_dir = os.path.dirname(current_dir)
logo_path = os.path.join(parent_dir, "resources", "icons", "intelsight-logo.svg")
logo_path = os.path.join(parent_dir, "resources", "icons", "aegissight-logo.svg")
if os.path.exists(logo_path):
# Load logo and display it at a smaller size for corner placement
@ -61,7 +61,7 @@ class AboutDialog(QDialog):
logo_label.setFixedSize(scaled_pixmap.size())
else:
# Fallback if logo not found
logo_label.setText("IntelSight")
logo_label.setText("AegisSight")
logo_label.setStyleSheet("font-size: 18px; font-weight: bold;")
# Logo in top-left corner
@ -111,7 +111,7 @@ class AboutDialog(QDialog):
lines = [
f"<h2>{title}</h2>",
f"<p>{version_text}</p>",
"<p>© 2025 IntelSight UG (haftungsbeschränkt)</p>",
"<p>© 2025 AegisSight UG (haftungsbeschränkt)</p>",
f"<p>{support}</p>",
f"<p>{license_text}</p>",
]