diff --git a/MiniMatrixRPi/main.qml b/MiniMatrixRPi/main.qml
index 9b71109265c5d17fb5ea8e5be747b9a39d2622af..94d56e24d3ecb77b2aeb37dad0d08a08597d879c 100644
--- a/MiniMatrixRPi/main.qml
+++ b/MiniMatrixRPi/main.qml
@@ -9,9 +9,11 @@ Window {
     flags: Qt.FramelessWindowHint
     color: "#666666"
     title: qsTr("Mini Mátrix")
-    Button {
+    Flickable {
         width: Screen.desktopAvailableWidth * 0.75
-        height: Screen.desktopAvailableHeight * 0.15
-        anchors {horizontalCenter: parent.horizontalCenter; top: parent.top; topMargin: parent.height*0.2}
+        height: Screen.desktopAvailableHeight * 0.8
+        contentWidth: Screen.desktopAvailableWidth * 0.75
+        anchors {horizontalCenter: parent.horizontalCenter; top: parent.top; topMargin: parent.height*0.1}
+
     }
 }