diff --git a/interface/resources/qml/controls-uit/ContentSection.qml b/interface/resources/qml/controls-uit/ContentSection.qml index 20137c28cb..46f8c22420 100644 --- a/interface/resources/qml/controls-uit/ContentSection.qml +++ b/interface/resources/qml/controls-uit/ContentSection.qml @@ -88,11 +88,11 @@ Column { anchors { verticalCenter: title.verticalCenter right: parent.right - rightMargin: -hifi.dimensions.contentMargin.x + rightMargin: -4 } y: -2 - size: hifi.fontSizes.carat - text: isCollapsed ? hifi.glyphs.caratR : hifi.glyphs.caratDn + size: hifi.fontSizes.disclosureButton + text: isCollapsed ? hifi.glyphs.disclosureButtonExpand : hifi.glyphs.disclosureButtonCollapse color: hifi.colors.lightGrayText visible: isCollapsible } diff --git a/interface/resources/qml/styles-uit/HifiConstants.qml b/interface/resources/qml/styles-uit/HifiConstants.qml index e99fa9dc2a..e1dc77a695 100644 --- a/interface/resources/qml/styles-uit/HifiConstants.qml +++ b/interface/resources/qml/styles-uit/HifiConstants.qml @@ -127,6 +127,7 @@ Item { readonly property real menuItem: dimensions.largeScreen ? 15 : 11 readonly property real shortcutText: dimensions.largeScreen ? 13 : 9 readonly property real carat: dimensions.largeScreen ? 38 : 30 + readonly property real disclosureButton: dimensions.largeScreen ? 20 : 15 } Item { @@ -138,6 +139,8 @@ Item { readonly property string close: "w" readonly property string closeInverted: "x" readonly property string closeSmall: "C" + readonly property string disclosureButtonCollapse: "M" + readonly property string disclosureButtonExpand: "L" readonly property string disclosureCollapse: "Z" readonly property string disclosureExpand: "B" readonly property string forward: "D"