From cd7fc93b6a78f01f250ef7a0da49d2fcd80eac87 Mon Sep 17 00:00:00 2001 From: Adriaan de Groot Date: Sun, 16 Jun 2019 13:47:21 +0200 Subject: [PATCH] [branding] Be more chatty when slideshow is loaded --- src/branding/default/show.qml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/branding/default/show.qml b/src/branding/default/show.qml index 7e04970ea..cb98ecb0a 100644 --- a/src/branding/default/show.qml +++ b/src/branding/default/show.qml @@ -68,5 +68,8 @@ Presentation centeredText: "This is a third Slide element." } - Component.onCompleted: advanceTimer.running = true + Component.onCompleted: { + advanceTimer.running = true; + console.log("Component complete"); + } }