diff options
author | Laszlo Agocs <laszlo.agocs@qt.io> | 2017-11-14 13:26:39 +0100 |
---|---|---|
committer | Laszlo Agocs <laszlo.agocs@qt.io> | 2017-11-14 12:32:26 +0000 |
commit | a6d21e484a4d0f3308dbdb157e602ab5965bccf3 (patch) | |
tree | dbebd79edf85d87f29e763bf6b19cbbddb5a4b2d /src | |
parent | 296810ea4bb4f734881a517eb101e5b948c1905b (diff) | |
download | qtquickcontrols-a6d21e484a4d0f3308dbdb157e602ab5965bccf3.tar.gz |
Fix base slider style in static builds
Avoid errors like
ShaderEffect: Failed to read :/QtQuick/Controls/Shaders/blur.vert
in static builds.
Task-number: QTBUG-64488
Change-Id: I13b8aa0736db68859e0b4539937952f9c4b5b04b
Reviewed-by: J-P Nurmi <jpnurmi@qt.io>
Diffstat (limited to 'src')
-rw-r--r-- | src/controls/plugin.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/controls/plugin.cpp b/src/controls/plugin.cpp index bac0d64d..2590d892 100644 --- a/src/controls/plugin.cpp +++ b/src/controls/plugin.cpp @@ -75,6 +75,7 @@ static void initResources() { #ifdef QT_STATIC Q_INIT_RESOURCE(qmake_QtQuick_Controls); + Q_INIT_RESOURCE(qmake_controls); #endif } |