mirror of
https://github.com/overte-org/overte.git
synced 2025-08-09 23:40:11 +02:00
Merge pull request #11383 from ElderOrb/case7384
7384 On Domains without Edit Access, Create Button Text still Highlights
This commit is contained in:
commit
742cf0debe
1 changed files with 3 additions and 3 deletions
|
@ -168,7 +168,7 @@ Item {
|
||||||
|
|
||||||
PropertyChanges {
|
PropertyChanges {
|
||||||
target: text
|
target: text
|
||||||
color: "#ffffff"
|
color: captionColorOverride !== "" ? captionColorOverride: "#ffffff"
|
||||||
text: tabletButton.hoverText
|
text: tabletButton.hoverText
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -194,7 +194,7 @@ Item {
|
||||||
|
|
||||||
PropertyChanges {
|
PropertyChanges {
|
||||||
target: text
|
target: text
|
||||||
color: "#333333"
|
color: captionColorOverride !== "" ? captionColorOverride: "#333333"
|
||||||
text: tabletButton.activeText
|
text: tabletButton.activeText
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -225,7 +225,7 @@ Item {
|
||||||
|
|
||||||
PropertyChanges {
|
PropertyChanges {
|
||||||
target: text
|
target: text
|
||||||
color: "#333333"
|
color: captionColorOverride !== "" ? captionColorOverride: "#333333"
|
||||||
text: tabletButton.activeHoverText
|
text: tabletButton.activeHoverText
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue