~haggai-eran/unity-2d/rtl-keyboard-navigation-886686

« back to all changes in this revision

Viewing changes to shell/dash/CategoryHeader.qml

No Glow assets + fixups for (LP: #933578)
This includes replacements assets for:
  Pips + arrows
  Dash search box and search box status icons
  Dash edge background (transparent)
  Dash edge background (non-transparent)
With associated code changes:
  Removal of blurRadius except for background itself
  Background tiling phase realignment for transparent background. Fixes: https://bugs.launchpad.net/bugs/933578. Approved by Gerry Boland, Xi Zhu.

Show diffs side-by-side

added added

removed removed

Lines of Context:
36
36
 
37
37
    Accessible.name: "%1 %2 %3".arg(title.text).arg(label.text).arg(folded ? u2d.tr("not expanded") : u2d.tr("expanded"))
38
38
 
39
 
    effect: DropShadow {
40
 
                blurRadius: 6
41
 
                offset.x: 0
42
 
                offset.y: 0
43
 
                color: "white"
44
 
                enabled: ( categoryHeader.state == "pressed" && !moving )
45
 
            }
46
 
 
47
39
    Image {
48
40
        id: iconImage
49
41
 
81
73
                  || categoryHeader.state == "hovered" ) ? 1.0 : 0.5
82
74
        Behavior on opacity {NumberAnimation { duration: 100 }}
83
75
 
84
 
        effect: DropShadow {
85
 
                    blurRadius: 4
86
 
                    offset.x: 0
87
 
                    offset.y: 0
88
 
                    color: "white"
89
 
                    enabled: ( moreResults.opacity == 1.0 && !moving )
90
 
                }
91
 
 
92
76
        TextCustom {
93
77
            id: label
94
78