Update Qt for macOs to 6.10.1

This commit is contained in:
Megamouse 2025-12-03 22:17:52 +01:00
parent 6c0e3de0ab
commit eb6f2988a9
2 changed files with 4 additions and 1 deletions

View file

@ -134,7 +134,7 @@ jobs:
runs-on: macos-14 runs-on: macos-14
env: env:
CCACHE_DIR: /tmp/ccache_dir CCACHE_DIR: /tmp/ccache_dir
QT_VER: '6.9.3' QT_VER: '6.10.1'
QT_VER_MAIN: '6' QT_VER_MAIN: '6'
LLVM_COMPILER_VER: '21' LLVM_COMPILER_VER: '21'
RELEASE_MESSAGE: ../GitHubReleaseMessage.txt RELEASE_MESSAGE: ../GitHubReleaseMessage.txt

View file

@ -438,6 +438,9 @@ QCoreApplication* create_application(std::span<char* const> qt_argv)
#elif __APPLE__ #elif __APPLE__
// set the QT_MTL_NO_TRANSACTION variable in order to prevent Qt GUI freeze // set the QT_MTL_NO_TRANSACTION variable in order to prevent Qt GUI freeze
qputenv("QT_MTL_NO_TRANSACTION", "1"); qputenv("QT_MTL_NO_TRANSACTION", "1");
// set the QT_MAC_NO_CONTAINER_LAYER variable in order to prevent swapchain crash
qputenv("QT_MAC_NO_CONTAINER_LAYER", "1");
#endif #endif
bool use_high_dpi = true; bool use_high_dpi = true;