diff options
-rw-r--r-- | CMakeLists.txt | 2 | ||||
-rw-r--r-- | io.github.NhekoReborn.Nheko.yaml | 2 | ||||
-rw-r--r-- | resources/qml/QuickSwitcher.qml | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index 87eb8474..9c7c17e2 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -603,7 +603,7 @@ if(USE_BUNDLED_MTXCLIENT) FetchContent_Declare( MatrixClient GIT_REPOSITORY https://github.com/Nheko-Reborn/mtxclient.git - GIT_TAG e136bc27b28d3bb5683735eb5a65d6ef2534ca3a + GIT_TAG f4425af712afc6ad704a39b93c912432bd3c1914 ) set(BUILD_LIB_EXAMPLES OFF CACHE INTERNAL "") set(BUILD_LIB_TESTS OFF CACHE INTERNAL "") diff --git a/io.github.NhekoReborn.Nheko.yaml b/io.github.NhekoReborn.Nheko.yaml index d45dba3d..0be3632f 100644 --- a/io.github.NhekoReborn.Nheko.yaml +++ b/io.github.NhekoReborn.Nheko.yaml @@ -213,7 +213,7 @@ modules: buildsystem: cmake-ninja name: mtxclient sources: - - commit: e136bc27b28d3bb5683735eb5a65d6ef2534ca3a + - commit: f4425af712afc6ad704a39b93c912432bd3c1914 #tag: v0.9.2 type: git url: https://github.com/Nheko-Reborn/mtxclient.git diff --git a/resources/qml/QuickSwitcher.qml b/resources/qml/QuickSwitcher.qml index 9ccefdec..bd2628bb 100644 --- a/resources/qml/QuickSwitcher.qml +++ b/resources/qml/QuickSwitcher.qml @@ -41,7 +41,7 @@ Popup { font.pixelSize: Math.ceil(quickSwitcher.textHeight * 0.6) width: parent.width - Keys.onPressed: { + Keys.onPressed: (event) => { if (event.key == Qt.Key_Up || event.key == Qt.Key_Backtab) { event.accepted = true; completerPopup.up(); |