From 9ba6bc1b9eee8a9e3e989fc2fc1064a98c3d8895 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ji=C5=99=C3=AD=20Pinkava?= Date: Wed, 23 Oct 2024 23:35:45 +0200 Subject: [PATCH] Disable Qt bug 129596 workeround for QT >= 6.8.1 The fix is also in 6.5.8+, but honestly I would not bother ... --- src/Gui/Application.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Gui/Application.h b/src/Gui/Application.h index 16e0f2d88f..9dc8dc9b69 100644 --- a/src/Gui/Application.h +++ b/src/Gui/Application.h @@ -30,7 +30,7 @@ #include -#if QT_VERSION >= QT_VERSION_CHECK(6,0,0) +#if QT_VERSION >= QT_VERSION_CHECK(6,0,0) && QT_VERSION < QT_VERSION_CHECK(6,8,1) # define HAS_QTBUG_129596 #endif