From 7916c442fc002a6fae551e3cbf58026be401a76f Mon Sep 17 00:00:00 2001 From: flurick Date: Nov 02 2022 11:57:50 +0000 Subject: Animation tool option: select camera after switching it Should fix #3228 --- diff --git a/toonz/sources/tnztools/tooloptions.cpp b/toonz/sources/tnztools/tooloptions.cpp index d4b05d2..dc9d41a 100644 --- a/toonz/sources/tnztools/tooloptions.cpp +++ b/toonz/sources/tnztools/tooloptions.cpp @@ -980,12 +980,12 @@ void ArrowToolOptionsBox::onCurrentStageObjectComboActivated(int index) { return; } // switch the current object - m_objHandle->setObjectId(id); if (id.isCamera()) { TXsheet *xsh = m_xshHandle->getXsheet(); if (xsh->getCameraColumnIndex() != id.getIndex()) m_xshHandle->changeXsheetCamera(id.getIndex()); } + m_objHandle->setObjectId(id); } //------------------------------------------------------------------------------