Fix enabled status of wear button

This commit is contained in:
Zach Fox 2017-10-26 17:02:09 -07:00
parent 8cb60fc62c
commit 9481824d0a

View file

@ -585,7 +585,7 @@ Rectangle {
// "Rez" button // "Rez" button
HifiControlsUit.Button { HifiControlsUit.Button {
id: rezNowButton; id: rezNowButton;
enabled: root.canRezCertifiedItems; enabled: root.canRezCertifiedItems || root.isWearable;
buttonGlyph: hifi.glyphs.lightning; buttonGlyph: hifi.glyphs.lightning;
color: hifi.buttons.red; color: hifi.buttons.red;
colorScheme: hifi.colorSchemes.light; colorScheme: hifi.colorSchemes.light;
@ -634,7 +634,7 @@ Rectangle {
} }
RalewaySemiBold { RalewaySemiBold {
id: explainRezText; id: explainRezText;
//visible: !root.isWearable; visible: !root.isWearable;
text: '<font color="' + hifi.colors.redAccent + '"><a href="#">What does "Rez" mean?</a></font>' text: '<font color="' + hifi.colors.redAccent + '"><a href="#">What does "Rez" mean?</a></font>'
// Text size // Text size
size: 16; size: 16;