diff options
author | Tadao Tanikawa <tanikawa.tadao@jp.panasonic.com> | 2018-01-11 17:11:21 +0000 |
---|---|---|
committer | Tadao Tanikawa <tanikawa.tadao@jp.panasonic.com> | 2018-01-11 17:11:21 +0000 |
commit | abebc671bd7db73d01cf9b417c7a233efb947001 (patch) | |
tree | a7b359bfa8a418a8b18ba1145d7aae221b2f3177 | |
parent | ec28d0bf46efbb13662a9b01de5d18f87fe34145 (diff) |
[CES2018] Quick hack for demosandbox/ruke47/ces2018
- Adjust timeout of progress bar
- Disable master volume
Change-Id: I92e0355e73e8c845127a3a0ab0e33bf058a5317a
Signed-off-by: Tadao Tanikawa <tanikawa.tadao@jp.panasonic.com>
-rw-r--r-- | homescreen/qml/MediaAreaBlank.qml | 16 | ||||
-rw-r--r-- | 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); |