From 173c8ef5042bdff708f5e77d6a4b0e06a2108cc3 Mon Sep 17 00:00:00 2001 From: s224389 <s224389@student.dtu.dk> Date: Mon, 20 Jan 2025 17:06:11 +0100 Subject: [PATCH] Changed GUI window name --- pt2d/gui/mainWindow.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pt2d/gui/mainWindow.py b/pt2d/gui/mainWindow.py index f706247..a102b3d 100644 --- a/pt2d/gui/mainWindow.py +++ b/pt2d/gui/mainWindow.py @@ -20,7 +20,7 @@ class MainWindow(QMainWindow): It initializes various attributes related to the image processing and user interface. """ super().__init__() - self.setWindowTitle("Test GUI") + self.setWindowTitle("Path Tracing in 2D images") self._last_loaded_pixmap = None self._circle_calibrated_radius = 6 -- GitLab