summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAleix Pol <aleixpol@kde.org>2015-09-15 09:54:47 (GMT)
committerAleix Pol <aleixpol@kde.org>2015-09-15 09:54:47 (GMT)
commitfca72f85e49c27b63748b54749461983a0a64ad1 (patch)
treefaa8838b92a6eeb0536217a1c0075f267c512ce1
parentb4893425e3b4e95e6f839070aa62b264f877065a (diff)
Remove the updates button in the installed page
Now we'll have a specific section for it
-rw-r--r--discover/qml/InstalledPage.qml23
1 files changed, 0 insertions, 23 deletions
diff --git a/discover/qml/InstalledPage.qml b/discover/qml/InstalledPage.qml
index 4b32f16..4f43297 100644
--- a/discover/qml/InstalledPage.qml
+++ b/discover/qml/InstalledPage.qml
@@ -8,29 +8,6 @@ ApplicationsListPage {
stateFilter: 2
preferList: true
- Component {
- id: updatesPage
- UpdateProgressPage {}
- }
-
- extendedToolBar: Component {
- id: toolbarComponent
- RowLayout {
- Button {
- id: commitButton
- text: i18n("Update All")
- iconSource: "system-software-update"
- visible: ResourcesModel.updatesCount>0
- width: ResourcesModel.updatesCount>0 ? commitButton.implicitWidth : 0
-
- onClicked: {
- var updates = page.Stack.view.push(updatesPage)
- updates.start()
- }
- }
- }
- }
-
Component.onCompleted: {
page.changeSorting("canUpgrade", Qt.AscendingOrder, "canUpgrade")
}