feat: display version, gui and env location in about #92

Merged
perl_d merged 1 commits from feat/display_path_env into master 2026-07-07 17:03:05 +02:00
2 changed files with 3 additions and 5 deletions
+1
View File
@@ -1,3 +1,4 @@
import importlib
import os
import sys
import traceback
+2 -5
View File
@@ -27,6 +27,7 @@ from PySide6.QtWidgets import (
QWidget,
)
from aare.gui.about import about_text
from aare.gui.constants import LOGGER_NAME
# Gui Models
@@ -1605,11 +1606,7 @@ class MainWindow(QMainWindow):
self.video_tab.setCurrentIndex(0)
def show_about_dialog(self):
QMessageBox.about(
self,
"About",
"Aare Macromolecular Crystallography GUI\nVersion: 0.3.1\nCopyright: Paul Scherrer Institute 2024-2026",
)
QMessageBox.about(self, "About", about_text())
def show_controls_help(self) -> None:
if self._controls_help_dialog is None: