From bf7f2b203e217c392b3237b7091aecc08b4e11b6 Mon Sep 17 00:00:00 2001 From: manongjohn Date: Fri, 15 Apr 2022 11:46:56 -0400 Subject: [PATCH] Fix Replace Level for Implicit Holds --- toonz/sources/toonz/filebrowserpopup.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/toonz/sources/toonz/filebrowserpopup.cpp b/toonz/sources/toonz/filebrowserpopup.cpp index 8975a66d..0dd0c04f 100644 --- a/toonz/sources/toonz/filebrowserpopup.cpp +++ b/toonz/sources/toonz/filebrowserpopup.cpp @@ -1831,7 +1831,7 @@ bool ReplaceLevelPopup::execute() { int r, c; for (c = m_range.m_c0; c <= m_range.m_c1; c++) for (r = m_range.m_r0; r <= m_range.m_r1; r++) { - TXshCell cell = xsh->getCell(r, c); + TXshCell cell = xsh->getCell(r, c, false); if (!cell.m_level.getPointer()) continue; cell.m_level = xl; xsh->setCell(r, c, cell); @@ -1843,7 +1843,7 @@ bool ReplaceLevelPopup::execute() { std::set::iterator i = m_columnRange.begin(); while (i != m_columnRange.end()) { for (int r = 0; r < frameLength; r++) { - TXshCell cell = xsh->getCell(r, *i); + TXshCell cell = xsh->getCell(r, *i, false); if (!cell.m_level.getPointer()) continue; cell.m_level = xl; xsh->setCell(r, *i, cell);