mirror of
https://invent.kde.org/marcoa/shift-shell.git
synced 2026-04-26 14:23:09 +00:00
taskswitcher: Don't set layer on task item, to avoid blurriness
Don't set a layer on the task item because it'll be put into a VBO and reduce the quality when the item is blown up in size.
This commit is contained in:
parent
d049679918
commit
e915990621
1 changed files with 4 additions and 5 deletions
|
|
@ -7,7 +7,6 @@ pragma ComponentBehavior: Bound
|
|||
|
||||
import QtQuick
|
||||
import QtQuick.Layouts
|
||||
import Qt5Compat.GraphicalEffects
|
||||
|
||||
import org.kde.kirigami 2.20 as Kirigami
|
||||
import org.kde.plasma.core as PlasmaCore
|
||||
|
|
@ -240,11 +239,11 @@ Item {
|
|||
id: thumbSource
|
||||
wId: delegate.window.internalId
|
||||
anchors.fill: item
|
||||
}
|
||||
|
||||
layer.enabled: true
|
||||
layer.effect: ColorOverlay {
|
||||
color: Qt.rgba(0, 0, 0, delegate.darken)
|
||||
}
|
||||
Rectangle {
|
||||
anchors.fill: item
|
||||
color: Qt.rgba(0, 0, 0, delegate.darken)
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue