Merge pull request #1988 from gamesguru/fix/settings-comboBox-no-autocapture-scroll
prevent comboBox & spinner from capturing mouse scroll unless active
This commit is contained in:
parent
2ece2aee9f
commit
3a707a5ee5
5 changed files with 31 additions and 11 deletions
|
|
@ -246,6 +246,7 @@ endif()
|
|||
#
|
||||
# Discover Qt dependencies.
|
||||
#
|
||||
|
||||
find_package(Qt6 6.5 COMPONENTS Core Widgets Gui LinguistTools Svg Multimedia Qml QuickControls2 REQUIRED)
|
||||
if (Qt6Qml_VERSION VERSION_GREATER_EQUAL "6.10.0")
|
||||
find_package(Qt6 REQUIRED COMPONENTS GuiPrivate QmlPrivate)
|
||||
|
|
@ -298,7 +299,8 @@ if(NOT MSVC)
|
|||
-fsized-deallocation \
|
||||
-fdiagnostics-color=always \
|
||||
-Wunreachable-code \
|
||||
-Wno-attributes"
|
||||
-Wno-attributes \
|
||||
-Wno-error=unused-parameter"
|
||||
)
|
||||
if(NOT CMAKE_COMPILER_IS_GNUCXX)
|
||||
# -Wshadow is buggy and broken in GCC, so do not enable it.
|
||||
|
|
@ -542,7 +544,9 @@ if(USE_BUNDLED_OLM)
|
|||
Olm
|
||||
GIT_REPOSITORY https://gitlab.matrix.org/matrix-org/olm.git
|
||||
GIT_TAG 3.2.16
|
||||
PATCH_COMMAND git apply ${CMAKE_CURRENT_SOURCE_DIR}/third_party/olm-patches/0001-fix-list-const-ptr.patch
|
||||
PATCH_COMMAND git apply
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/third_party/olm-patches/0001-fix-list-const-ptr.patch
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/third_party/olm-patches/0002-fix-cmake-cmp0148.patch
|
||||
UPDATE_DISCONNECTED 1
|
||||
)
|
||||
set(OLM_TESTS OFF CACHE INTERNAL "")
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue