Skip to content

Commit

Permalink
split lines into two
Browse files Browse the repository at this point in the history
  • Loading branch information
octaeder committed Jan 3, 2025
1 parent c419d43 commit 0b95895
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions src/texstudio.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1403,8 +1403,10 @@ void Texstudio::setupMenus()
}
}

newManagedAction(menu, "enlargePDF", tr("Show embedded PDF large"), SLOT(enlargeEmbeddedPDFViewer()))->setVisible(false);
newManagedAction(menu, "shrinkPDF", tr("Show embedded PDF small"), SLOT(shrinkEmbeddedPDFViewer()))->setVisible(false);
act=newManagedAction(menu, "enlargePDF", tr("Show embedded PDF large"), SLOT(enlargeEmbeddedPDFViewer()));
act->setVisible(false);
act=newManagedAction(menu, "shrinkPDF", tr("Show embedded PDF small"), SLOT(shrinkEmbeddedPDFViewer()));
act->setVisible(false);
newManagedAction(menu, "closeelement", tr("Close Element"), SLOT(viewCloseElement()), Qt::Key_Escape);

menu->addSeparator();
Expand Down

0 comments on commit 0b95895

Please sign in to comment.