fix: active window
This commit is contained in:
parent
df648330ea
commit
3cea48475b
1 changed files with 3 additions and 3 deletions
|
|
@ -30,9 +30,9 @@ Item {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
y: shouldShow && !!ToplevelManager.activeToplevel?.appId ? barBackground.height : barBackground.height - fullHeight
|
y: shouldShow ? barBackground.height : barBackground.height - fullHeight
|
||||||
height: shouldShow && !!ToplevelManager.activeToplevel?.appId ? fullHeight : 1
|
height: shouldShow ? fullHeight : 1
|
||||||
opacity: shouldShow && !!ToplevelManager.activeToplevel?.appId ? 1 : 0
|
opacity: shouldShow ? 1 : 0
|
||||||
clip: true
|
clip: true
|
||||||
|
|
||||||
function getIcon() {
|
function getIcon() {
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue