From bbf5e9f875db5c70c732c94c4848639b062d62f3 Mon Sep 17 00:00:00 2001 From: claudi Date: Wed, 25 Feb 2026 15:04:12 +0100 Subject: [PATCH] =?UTF-8?q?fix:=20correct=20capitalization=20of=20"h=C3=B6?= =?UTF-8?q?rl"=20in=20About=20dialog?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/webdrop_bridge/ui/main_window.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/webdrop_bridge/ui/main_window.py b/src/webdrop_bridge/ui/main_window.py index 9f091f9..e7ec8a0 100644 --- a/src/webdrop_bridge/ui/main_window.py +++ b/src/webdrop_bridge/ui/main_window.py @@ -1174,7 +1174,7 @@ class MainWindow(QMainWindow): f"for professional desktop applications.
" f"
" f"Product of:
" - f"Hörl Information Management GmbH
" + f"hörl Information Management GmbH
" f"Silberburgstraße 126
" f"70176 Stuttgart, Germany
" f"
" @@ -1184,7 +1184,7 @@ class MainWindow(QMainWindow): f"Web: https://www.hoerl-im.de/
" f"" f"
" - f"© 2026 Hörl Information Management GmbH. All rights reserved." + f"© 2026 hörl Information Management GmbH. All rights reserved." ) QMessageBox.about(self, f"About {self.config.app_name}", about_text)