From 207dd32a5d82990087ac84f725f6cc6ba25a98c2 Mon Sep 17 00:00:00 2001 From: Svetlana Kulikova Date: Wed, 26 Nov 2025 10:22:54 +0300 Subject: [PATCH] Fix bug 78733 --- PdfFile/PdfFile.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/PdfFile/PdfFile.cpp b/PdfFile/PdfFile.cpp index ddd88ea6b2..3d8024c432 100644 --- a/PdfFile/PdfFile.cpp +++ b/PdfFile/PdfFile.cpp @@ -1362,7 +1362,7 @@ HRESULT CPdfFile::AdvancedCommand(IAdvancedCommand* command) } case IAdvancedCommand::AdvancedCommandType::Redact: { - if (m_pInternal->pEditor && m_pInternal->pEditor->IsEditPage()) + if (m_pInternal->pEditor) m_pInternal->pEditor->Redact((CRedact*)command); return S_OK; }