qtdeclarative: Patch for scrollbar regression

This commit is contained in:
Thomas Tuegel 2020-08-10 10:18:51 -05:00 committed by Frederik Rietdijk
parent 900b2d5a6c
commit 5530043208

View File

@ -1,4 +1,4 @@
{ qtModule, lib, python3, qtbase, qtsvg }:
{ qtModule, lib, fetchpatch, python3, qtbase, qtsvg }:
with lib;
@ -23,4 +23,12 @@ qtModule {
"bin/qmlscene"
"bin/qmltestrunner"
];
patches =
# https://mail.kde.org/pipermail/kde-distro-packagers/2020-June/000419.html
lib.optional (lib.versionAtLeast qtbase.version "5.14.2")
(fetchpatch {
url = "https://codereview.qt-project.org/gitweb?p=qt/qtdeclarative.git;a=patch;h=3e47ac319b0f53c43cc02a8356c2dec4f0daeef4";
sha256 = "0wvncg7047q73nm0svc6kb14sigwk7sc53r4778kn033aj0qqszj";
name = "qtdeclarative-QQuickItemView-fix-max-extent.patch";
});
}