Merge pull request #13625 from zfox23/MS16802_openGlyph

Fix MS16802: In Purchases, there shouldn't be a glyph associated with the Open button
This commit is contained in:
Howard Stearns 2018-07-18 10:12:47 -07:00 committed by GitHub
commit db212a0c99
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -731,7 +731,7 @@ Item {
}
HiFiGlyphs {
id: rezIcon;
text: (root.buttonGlyph)[itemTypesArray.indexOf(root.itemType)];
text: root.isInstalled ? "" : (root.buttonGlyph)[itemTypesArray.indexOf(root.itemType)];
anchors.right: rezIconLabel.left;
anchors.rightMargin: 2;
anchors.verticalCenter: parent.verticalCenter;