You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
34 lines
820 B
34 lines
820 B
From 815975c707faf23d458f28130edf108de9c5fa64 Mon Sep 17 00:00:00 2001
|
|
From: Zach Ploskey <zach@ploskey.com>
|
|
Date: Sat, 30 May 2015 17:37:59 -0700
|
|
Subject: [PATCH 34/70] fix typo
|
|
|
|
---
|
|
components/2.0/Background.qml | 4 ++--
|
|
1 file changed, 2 insertions(+), 2 deletions(-)
|
|
|
|
diff --git a/components/2.0/Background.qml b/components/2.0/Background.qml
|
|
index 5eb13ac..952894c 100644
|
|
--- a/components/2.0/Background.qml
|
|
+++ b/components/2.0/Background.qml
|
|
@@ -25,7 +25,7 @@
|
|
import QtQuick 2.0
|
|
|
|
FocusScope {
|
|
- id: containter
|
|
+ id: container
|
|
|
|
property alias source: image.source
|
|
property alias fillMode: image.fillMode
|
|
@@ -43,6 +43,6 @@ FocusScope {
|
|
|
|
MouseArea {
|
|
anchors.fill: parent
|
|
- onClicked: containter.focus = true
|
|
+ onClicked: container.focus = true
|
|
}
|
|
}
|
|
--
|
|
2.4.3
|
|
|