mirror of
https://github.com/overte-org/overte.git
synced 2025-08-07 19:50:38 +02:00
Fix enabled status of wear button
This commit is contained in:
parent
8cb60fc62c
commit
9481824d0a
1 changed files with 2 additions and 2 deletions
|
@ -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;
|
||||||
|
|
Loading…
Reference in a new issue