mirror of
https://github.com/overte-org/overte.git
synced 2025-04-20 04:44:11 +02:00
7384 On Domains without Edit Access, Create Button Text still Highlights
(override color in states if captionColorOverride was specified)
This commit is contained in:
parent
10494cf3e0
commit
353bab5277
1 changed files with 3 additions and 3 deletions
|
@ -168,7 +168,7 @@ Item {
|
|||
|
||||
PropertyChanges {
|
||||
target: text
|
||||
color: "#ffffff"
|
||||
color: captionColorOverride !== "" ? captionColorOverride: "#ffffff"
|
||||
text: tabletButton.hoverText
|
||||
}
|
||||
|
||||
|
@ -194,7 +194,7 @@ Item {
|
|||
|
||||
PropertyChanges {
|
||||
target: text
|
||||
color: "#333333"
|
||||
color: captionColorOverride !== "" ? captionColorOverride: "#333333"
|
||||
text: tabletButton.activeText
|
||||
}
|
||||
|
||||
|
@ -225,7 +225,7 @@ Item {
|
|||
|
||||
PropertyChanges {
|
||||
target: text
|
||||
color: "#333333"
|
||||
color: captionColorOverride !== "" ? captionColorOverride: "#333333"
|
||||
text: tabletButton.activeHoverText
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue