From 1ebb010f6b332fedd54c93b5937a47514fc50c1e Mon Sep 17 00:00:00 2001 From: Christoph Feck Date: Sun, 31 Mar 2019 14:03:07 +0200 Subject: [PATCH 1/2] GIT_SILENT Upgrade KDE Applications version to 19.03.90. --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 0476bfe8e..1595716d1 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -3,7 +3,7 @@ cmake_minimum_required(VERSION 3.0) # KDE Application Version, managed by release script set (KDE_APPLICATIONS_VERSION_MAJOR "19") set (KDE_APPLICATIONS_VERSION_MINOR "03") -set (KDE_APPLICATIONS_VERSION_MICRO "80") +set (KDE_APPLICATIONS_VERSION_MICRO "90") set (KDE_APPLICATIONS_VERSION "${KDE_APPLICATIONS_VERSION_MAJOR}.${KDE_APPLICATIONS_VERSION_MINOR}.${KDE_APPLICATIONS_VERSION_MICRO}") project(okular VERSION 1.6.${KDE_APPLICATIONS_VERSION_MICRO}) From 5ef54e97ecd2e2a7557de9cb5e07c55a172b55e1 Mon Sep 17 00:00:00 2001 From: Kezi Olio Date: Fri, 5 Apr 2019 09:46:50 -0600 Subject: [PATCH 2/2] Set Qt::AA_CompressTabletEvents attribute to avoid latency when scrolling with a tablet Summary: BUG: 399208 See also: https://bugreports.qt.io/browse/QTBUG-71708 Enabling this option _vastly_ improves the user experience on wacom tablets and touchscreens Reviewers: #okular Subscribers: sander, aacid, okular-devel, #okular Tags: #okular Differential Revision: https://phabricator.kde.org/D16519 --- shell/main.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/shell/main.cpp b/shell/main.cpp index 2e2e80153..17b58c610 100644 --- a/shell/main.cpp +++ b/shell/main.cpp @@ -31,6 +31,7 @@ int main(int argc, char** argv) { QGuiApplication::setAttribute(Qt::AA_UseHighDpiPixmaps); + QCoreApplication::setAttribute(Qt::AA_CompressTabletEvents); QApplication app(argc, argv); KLocalizedString::setApplicationDomain("okular");