mirror of
https://invent.kde.org/marcoa/shift-shell.git
synced 2026-04-26 14:23:09 +00:00
smaller tab icons, dont touch the time
This commit is contained in:
parent
24dc96ad21
commit
b980f0cf8a
2 changed files with 16 additions and 11 deletions
|
|
@ -71,6 +71,7 @@ Rectangle {
|
|||
}
|
||||
|
||||
ColumnLayout {
|
||||
height: Math.min(implicitHeight, (plasmoid.availableScreenRect.y + plasmoid.availableScreenRect.height) - Qt.inputMethod.keyboardRectangle.y)
|
||||
anchors {
|
||||
left: parent.left
|
||||
right: parent.right
|
||||
|
|
@ -89,19 +90,22 @@ Rectangle {
|
|||
placeholderText: "Search ..."
|
||||
}
|
||||
|
||||
Milou.ResultsView {
|
||||
id: listView
|
||||
queryString: queryField.text
|
||||
visible: count > 0
|
||||
|
||||
PlasmaExtras.ScrollArea {
|
||||
visible: listView.count > 0
|
||||
Layout.fillWidth: true
|
||||
Layout.fillHeight: true
|
||||
Layout.preferredHeight: listView.contentHeight
|
||||
Layout.alignment: Qt.AlignTop
|
||||
|
||||
onActivated: queryField.text = ""
|
||||
onUpdateQueryString: {
|
||||
queryField.text = text
|
||||
queryField.cursorPosition = cursorPosition
|
||||
Milou.ResultsView {
|
||||
id: listView
|
||||
queryString: queryField.text
|
||||
|
||||
onActivated: queryField.text = ""
|
||||
onUpdateQueryString: {
|
||||
queryField.text = text
|
||||
queryField.cursorPosition = cursorPosition
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -173,8 +173,9 @@ PlasmaCore.ColorScope {
|
|||
anchors {
|
||||
bottom: parent.bottom
|
||||
right: parent.right
|
||||
bottomMargin: slidingPanel.visible ? parent.height : 0
|
||||
}
|
||||
height: slidingPanel.visible ? units.iconSizes.huge : parent.height
|
||||
height: slidingPanel.visible ? units.iconSizes.large : parent.height
|
||||
Behavior on height {
|
||||
PropertyAnimation {
|
||||
duration: units.longDuration
|
||||
|
|
@ -223,7 +224,7 @@ PlasmaCore.ColorScope {
|
|||
id: appletsStack
|
||||
anchors {
|
||||
fill: parent
|
||||
bottomMargin: units.iconSizes.huge
|
||||
bottomMargin: units.iconSizes.large
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue