From aa8ade9af0b4f758c702e6b41e6fda567215cf4d Mon Sep 17 00:00:00 2001 From: Gabriel de Dietrich <gabriel.dedietrich@digia.com> Date: Fri, 3 May 2013 15:54:50 +0200 Subject: [PATCH] ScrollBar: Fix horizontal arrows in widget-less style Change-Id: I01b657135e94d9649e5773a7987439f50de48cdd Reviewed-by: J-P Nurmi <jpnurmi@digia.com> --- src/styles/ScrollBarStyle.qml | 6 ++---- src/styles/images/arrow-left.png | Bin 0 -> 114 bytes src/styles/images/arrow-left@2x.png | Bin 0 -> 139 bytes src/styles/images/arrow-right.png | Bin 0 -> 114 bytes src/styles/images/arrow-right@2x.png | Bin 0 -> 148 bytes src/styles/styles.pro | 6 +++++- 6 files changed, 7 insertions(+), 5 deletions(-) create mode 100644 src/styles/images/arrow-left.png create mode 100644 src/styles/images/arrow-left@2x.png create mode 100644 src/styles/images/arrow-right.png create mode 100644 src/styles/images/arrow-right@2x.png diff --git a/src/styles/ScrollBarStyle.qml b/src/styles/ScrollBarStyle.qml index e2b452c61..6fd8edb57 100644 --- a/src/styles/ScrollBarStyle.qml +++ b/src/styles/ScrollBarStyle.qml @@ -129,8 +129,7 @@ Style { anchors.rightMargin: -1 border.color: "#aaa" Image { - source: "images/arrow-down.png" - rotation: horizontal ? -90 : 0 + source: horizontal ? "images/arrow-right.png" : "images/arrow-down.png" anchors.centerIn: parent opacity: 0.7 } @@ -155,8 +154,7 @@ Style { anchors.rightMargin: horizontal ? 0 : -1 color: "lightgray" Image { - source: "images/arrow-up.png" - rotation: horizontal ? -90 : 0 + source: horizontal ? "images/arrow-left.png" : "images/arrow-up.png" anchors.centerIn: parent opacity: 0.7 } diff --git a/src/styles/images/arrow-left.png b/src/styles/images/arrow-left.png new file mode 100644 index 0000000000000000000000000000000000000000..02153519b926534d331054acd4fa6a7ecdfec5ef GIT binary patch literal 114 zcmeAS@N?(olHy`uVBq!ia0vp^EI`c8!3HGtQ{P+wQkI@Bjv*W~V^199ZBP(kIOv&i zB+7#)G@8Np!y=Z-`SP9O-_1{lADvpL{EuS>CnK*mzr}Z*_YyBG<Tid4Y=1mq4ag7% MPgg&ebxsLQ0D+DpAOHXW literal 0 HcmV?d00001 diff --git a/src/styles/images/arrow-left@2x.png b/src/styles/images/arrow-left@2x.png new file mode 100644 index 0000000000000000000000000000000000000000..0005b3e70c4c90c585338db9f6cf6b94cfb1a59d GIT binary patch literal 139 zcmeAS@N?(olHy`uVBq!ia0vp^96-#+!3HFS!eXZZsUS}m#}J9Bt>-uLHaPG&Uo5}E z<8bhw?%B5oI7C8n4zMkB42elPd9^=j_s{E1ec3GhM_!A#u`X^3JlJ5{XqYJH^LNXm oGfJx#e+rhIUY_Ook@q`u%L|+SHOgJ0K+_pKUHx3vIVCg!0F)jvrT_o{ literal 0 HcmV?d00001 diff --git a/src/styles/images/arrow-right.png b/src/styles/images/arrow-right.png new file mode 100644 index 0000000000000000000000000000000000000000..8753b9de71b0ab3fbe42b1ccf220754d08e14e5b GIT binary patch literal 114 zcmeAS@N?(olHy`uVBq!ia0vp^EI`c8!3HGtQ{P+wQkI@Bjv*W~V^3}5JfI-La8Z0y zq(Vv-x4Nfd-h$GcKOat(mfz{@YP<gI@R7OBN1oph`clIa^N&gOG?Sv6fcx~w==(rJ O7(8A5T-G@yGywn^4<+{i literal 0 HcmV?d00001 diff --git a/src/styles/images/arrow-right@2x.png b/src/styles/images/arrow-right@2x.png new file mode 100644 index 0000000000000000000000000000000000000000..21b36f7bbc945ea6c3bbd589c65d3dea3e065872 GIT binary patch literal 148 zcmeAS@N?(olHy`uVBq!ia0vp^96-#+!3HFS!eXZZsc26Z#}J9Bt!H<0HaG}491NUo zuz~INh74~5QJ$OwOh>->xO}j?cZlt@bi|B}2>~-cyoqyK*yhB0RKd~m!=h)FUYobs x3!d9AF8xcWBAKryiD%LZG3%Zk1`j(9^1iRNkW`rvk`A<n!PC{xWt~$(69D1*GT#6I literal 0 HcmV?d00001 diff --git a/src/styles/styles.pro b/src/styles/styles.pro index 536cb6aaa..d9198fef9 100644 --- a/src/styles/styles.pro +++ b/src/styles/styles.pro @@ -55,6 +55,10 @@ QML_FILES += \ images/arrow-up.png \ images/arrow-up@2x.png \ images/arrow-down.png \ - images/arrow-down@2x.png + images/arrow-down@2x.png \ + images/arrow-left.png \ + images/arrow-left@2x.png \ + images/arrow-right.png \ + images/arrow-right@2x.png load(qml_module) -- GitLab