diff --git a/src/styles/ScrollBarStyle.qml b/src/styles/ScrollBarStyle.qml index e2b452c6177ba83217d16bb88389146b6ba460e0..6fd8edb57d50616f804255857bcca69ac8c09506 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 Binary files /dev/null and b/src/styles/images/arrow-left.png differ 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 Binary files /dev/null and b/src/styles/images/arrow-left@2x.png differ diff --git a/src/styles/images/arrow-right.png b/src/styles/images/arrow-right.png new file mode 100644 index 0000000000000000000000000000000000000000..8753b9de71b0ab3fbe42b1ccf220754d08e14e5b Binary files /dev/null and b/src/styles/images/arrow-right.png differ 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 Binary files /dev/null and b/src/styles/images/arrow-right@2x.png differ diff --git a/src/styles/styles.pro b/src/styles/styles.pro index 536cb6aaaf72e41aa6addc4f2277805b5e771de4..d9198fef972fe4a9dfed233f470855ab0309889f 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)