summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-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"