smaller tab icons, dont touch the time

This commit is contained in:
Marco Martin 2015-07-08 22:31:24 +02:00
parent 24dc96ad21
commit b980f0cf8a
2 changed files with 16 additions and 11 deletions

View file

@ -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
}
}
}

View file

@ -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
}
}
}