Issue #189: Enable plugins by default

This commit is contained in:
Jakub Melka
2024-06-29 16:32:14 +02:00
parent dcac8c9572
commit 7e4a4d78e3
4 changed files with 18 additions and 3 deletions

View File

@ -258,6 +258,11 @@ void PDFWidgetUtils::checkMenuAccessibility(QMenu* menu)
QString text = action->text();
int i = text.indexOf(QChar('&'));
if (text.isEmpty())
{
continue;
}
if (i == -1)
{
actionsWithNoAmpersands << text;