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 { ColumnLayout {
height: Math.min(implicitHeight, (plasmoid.availableScreenRect.y + plasmoid.availableScreenRect.height) - Qt.inputMethod.keyboardRectangle.y)
anchors { anchors {
left: parent.left left: parent.left
right: parent.right right: parent.right
@ -89,19 +90,22 @@ Rectangle {
placeholderText: "Search ..." placeholderText: "Search ..."
} }
Milou.ResultsView { PlasmaExtras.ScrollArea {
id: listView visible: listView.count > 0
queryString: queryField.text
visible: count > 0
Layout.fillWidth: true Layout.fillWidth: true
Layout.fillHeight: true
Layout.preferredHeight: listView.contentHeight Layout.preferredHeight: listView.contentHeight
Layout.alignment: Qt.AlignTop Layout.alignment: Qt.AlignTop
onActivated: queryField.text = "" Milou.ResultsView {
onUpdateQueryString: { id: listView
queryField.text = text queryString: queryField.text
queryField.cursorPosition = cursorPosition
onActivated: queryField.text = ""
onUpdateQueryString: {
queryField.text = text
queryField.cursorPosition = cursorPosition
}
} }
} }

View file

@ -173,8 +173,9 @@ PlasmaCore.ColorScope {
anchors { anchors {
bottom: parent.bottom bottom: parent.bottom
right: parent.right 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 { Behavior on height {
PropertyAnimation { PropertyAnimation {
duration: units.longDuration duration: units.longDuration
@ -223,7 +224,7 @@ PlasmaCore.ColorScope {
id: appletsStack id: appletsStack
anchors { anchors {
fill: parent fill: parent
bottomMargin: units.iconSizes.huge bottomMargin: units.iconSizes.large
} }
} }
} }