okular: do not show the forms message if form actions are not enabled

was showing an empty message with two buttons at start when something to
open was not specified, the check now matches the one done in
Okular::Part::openFile()

Signed-off-by: Ivailo Monev <xakepa10@gmail.com>
This commit is contained in:
Ivailo Monev 2023-07-07 16:20:25 +03:00
parent bf3570e2a8
commit a2b8bfaaa9

View file

@ -2709,7 +2709,7 @@ void Part::unsetDummyMode()
// attach the actions of the children widgets too
m_formsMessage->addAction( m_pageView->toggleFormsAction() );
m_formsMessage->setVisible( m_pageView->toggleFormsAction() != 0 );
m_formsMessage->setVisible( m_pageView->toggleFormsAction() != 0 && m_pageView->toggleFormsAction()->isEnabled() );
// ensure history actions are in the correct state
updateViewActions();