From f8acb93f83317d520f9c426041ddc2cfbf45e749 Mon Sep 17 00:00:00 2001 From: manongjohn Date: Sun, 13 Feb 2022 10:09:30 -0500 Subject: [PATCH] Do not turn on Live View at startup --- toonz/sources/stopmotion/stopmotion.cpp | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/toonz/sources/stopmotion/stopmotion.cpp b/toonz/sources/stopmotion/stopmotion.cpp index b5223407..d61c7b99 100644 --- a/toonz/sources/stopmotion/stopmotion.cpp +++ b/toonz/sources/stopmotion/stopmotion.cpp @@ -3060,7 +3060,9 @@ void StopMotion::changeCameras(int index) { emit(liveViewChanged(false)); refreshFrameInfo(); // after all live view data is cleared, start it again. - toggleLiveView(); + if (m_liveViewStatus > LiveViewClosed) { + toggleLiveView(); + } } //-----------------------------------------------------------------