Skip to content

Commit

Permalink
remove print shortcut
Browse files Browse the repository at this point in the history
txs only supports source code print, ctrl-p for that may be unexpected
  • Loading branch information
sunderme committed Jul 3, 2024
1 parent 1c03225 commit 2db4b16
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/texstudio.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -929,7 +929,7 @@ void Texstudio::setupMenus()
newManagedAction(menu, "closeall", tr("Clos&e All"), SLOT(fileCloseAll()));

menu->addSeparator();
newManagedEditorAction(menu, "print", tr("Print Source Code..."), "print", Qt::CTRL | Qt::Key_P);
newManagedEditorAction(menu, "print", tr("Print Source Code..."), "print");

menu->addSeparator();
newManagedAction(menu, "exit", tr("Exit"), SLOT(fileExit()), Qt::CTRL | Qt::Key_Q)->setMenuRole(QAction::QuitRole);
Expand Down

0 comments on commit 2db4b16

Please sign in to comment.