From abebc671bd7db73d01cf9b417c7a233efb947001 Mon Sep 17 00:00:00 2001 From: Tadao Tanikawa Date: Thu, 11 Jan 2018 17:11:21 +0000 Subject: [CES2018] Quick hack for demo - Adjust timeout of progress bar - Disable master volume Change-Id: I92e0355e73e8c845127a3a0ab0e33bf058a5317a Signed-off-by: Tadao Tanikawa --- homescreen/qml/MediaAreaBlank.qml | 16 ++++++++-------- homescreen/src/applicationlauncher.cpp | 2 +- 2 files changed, 9 insertions(+), 9 deletions(-) diff --git a/homescreen/qml/MediaAreaBlank.qml b/homescreen/qml/MediaAreaBlank.qml index 2b888c8..fde386e 100644 --- a/homescreen/qml/MediaAreaBlank.qml +++ b/homescreen/qml/MediaAreaBlank.qml @@ -29,14 +29,14 @@ Image { MouseArea { anchors.fill: parent - function enableVolumeDisplay() { - if (!displayVolume) { - displayVolume = true - master_volume.visible = true - volume_timer.restart() - } - } - onClicked: enableVolumeDisplay() +// function enableVolumeDisplay() { +// if (!displayVolume) { +// displayVolume = true +// master_volume.visible = true +// volume_timer.restart() +// } +// } +// onClicked: enableVolumeDisplay() } Image { diff --git a/homescreen/src/applicationlauncher.cpp b/homescreen/src/applicationlauncher.cpp index 5a1e2d6..8729a5e 100644 --- a/homescreen/src/applicationlauncher.cpp +++ b/homescreen/src/applicationlauncher.cpp @@ -29,7 +29,7 @@ ApplicationLauncher::ApplicationLauncher(QObject *parent) , m_launching(false) , m_timeout(new QTimer(this)) { - m_timeout->setInterval(3000); + m_timeout->setInterval(10000); m_timeout->setSingleShot(true); connect(m_timeout, &QTimer::timeout, [&]() { setLaunching(false); -- cgit 1.2.3-korg