summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGunnar Sletta <gunnar.sletta@digia.com>2012-11-08 19:51:29 +0100
committerGunnar Sletta <gunnar.sletta@digia.com>2012-11-08 19:54:27 +0100
commit24e903ef905ea71363023fd534c2049581f9c839 (patch)
tree311e4827a6595acc4d606ba18c3a9857abb38335
parent883d5cf719f54dea34090e0f453792f2ded2846d (diff)
Fix title coloring in some examples
-rw-r--r--examples/animatedbackground/SlideDeck.qml2
-rw-r--r--examples/customtransition/OpacityTransitionPresentation.qml2
-rw-r--r--examples/notes/SlideDeck.qml2
-rw-r--r--src/Presentation.qml2
4 files changed, 4 insertions, 4 deletions
diff --git a/examples/animatedbackground/SlideDeck.qml b/examples/animatedbackground/SlideDeck.qml
index ba3d2ed..8dd58a3 100644
--- a/examples/animatedbackground/SlideDeck.qml
+++ b/examples/animatedbackground/SlideDeck.qml
@@ -44,7 +44,7 @@ Presentation {
BackgroundSwirls {}
- property color textColor: "white"
+ textColor: "white"
Slide {
centeredText: "Animated Background"
diff --git a/examples/customtransition/OpacityTransitionPresentation.qml b/examples/customtransition/OpacityTransitionPresentation.qml
index 17cd546..3085b90 100644
--- a/examples/customtransition/OpacityTransitionPresentation.qml
+++ b/examples/customtransition/OpacityTransitionPresentation.qml
@@ -44,7 +44,7 @@ Presentation {
width: 1280
height: 720
- property color textColor: "white"
+ textColor: "white"
property bool inTransition: false;
diff --git a/examples/notes/SlideDeck.qml b/examples/notes/SlideDeck.qml
index 2945f9f..9a6fa95 100644
--- a/examples/notes/SlideDeck.qml
+++ b/examples/notes/SlideDeck.qml
@@ -19,7 +19,7 @@ Presentation {
Clock { textColor: "white" }
SlideCounter { textColor: "white" }
- property string titleColor: "white"
+ titleColor: "white"
showNotes: true
diff --git a/src/Presentation.qml b/src/Presentation.qml
index 871ba69..94fdffb 100644
--- a/src/Presentation.qml
+++ b/src/Presentation.qml
@@ -45,7 +45,7 @@ Item {
property bool showNotes: false;
- property color titleColor: "black"
+ property color titleColor: textColor;
property color textColor: "black"
property string fontFamily: "Helvetica"
property string codeFontFamily: "Courier New"