summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--qml/components/HomeScreen.qml8
1 files changed, 6 insertions, 2 deletions
diff --git a/qml/components/HomeScreen.qml b/qml/components/HomeScreen.qml
index 2c39489..ef3debe 100644
--- a/qml/components/HomeScreen.qml
+++ b/qml/components/HomeScreen.qml
@@ -160,7 +160,9 @@ Rectangle {
sourceSize.height: Theme.sizes.reloadButtonSize
sourceSize.width: Theme.sizes.reloadButtonSize
MouseArea {
- anchors.fill: parent
+ anchors.centerIn: parent
+ width: Theme.sizes.homeTitleHeight
+ height: Theme.sizes.homeTitleHeight
onClicked: {
rotationUpcoming.running = true
homeScreenListView.reloadUpcoming()
@@ -335,7 +337,9 @@ Rectangle {
}
}
MouseArea {
- anchors.fill: reloadNews
+ anchors.centerIn: reloadNews
+ width: Theme.sizes.homeTitleHeight
+ height: Theme.sizes.homeTitleHeight
onClicked: {
rotationNews.running = true
tweetModel.reload()