From 2c4f485079a90f55c5f175f14fd0899a2c6baa5f Mon Sep 17 00:00:00 2001 From: Roxanne Skelly Date: Fri, 15 Feb 2019 12:31:01 -0800 Subject: [PATCH] QmlMarketplace invert arrow direction on sort. --- .../resources/qml/hifi/commerce/marketplace/SortButton.qml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/interface/resources/qml/hifi/commerce/marketplace/SortButton.qml b/interface/resources/qml/hifi/commerce/marketplace/SortButton.qml index e876842d89..2673043b6b 100644 --- a/interface/resources/qml/hifi/commerce/marketplace/SortButton.qml +++ b/interface/resources/qml/hifi/commerce/marketplace/SortButton.qml @@ -28,8 +28,8 @@ Item { id: root; - property string ascGlyph: "\u2191" - property string descGlyph: "\u2193" + property string ascGlyph: "\u2193" + property string descGlyph: "\u2191" property string text: "" property bool ascending: false property bool checked: false