mirror of
https://github.com/overte-org/overte.git
synced 2025-08-04 16:30:10 +02:00
Fix recording starting on tablet when close dialog rather than tablet
This commit is contained in:
parent
982c0ec559
commit
a9f5b60319
1 changed files with 2 additions and 2 deletions
|
@ -200,8 +200,8 @@
|
|||
HOME_URL = "Tablet.qml";
|
||||
|
||||
if (type === "Home" && url === HOME_URL) {
|
||||
// Start countdown if recording is enabled.
|
||||
if (isRecordingEnabled && recordingState === IDLE) {
|
||||
// Start countdown if using toolbar and recording is enabled.
|
||||
if (usingToolbar() && isRecordingEnabled && recordingState === IDLE) {
|
||||
startCountdown();
|
||||
}
|
||||
isDialogDisplayed = false;
|
||||
|
|
Loading…
Reference in a new issue