Skip to content

Commit

Permalink
main_create: Make the repeat action/Ctrl+R functionality more apparen…
Browse files Browse the repository at this point in the history
…t by moving it from the Tools menu to the end of the Edit menu. It was almost hidden, not even long-time modders knew about it, me included. Suggested by @kraggrim.

https://discord.com/channels/411286129317249035/411291053702774784/1221443474348576859

kraggrim
 —
03/24/2024 2:00 PM
Another thing might be to make the ctrl+r (repeat last) command more obvious. Like add it to the edit menu. As a lot of folk don't seem to know about it.
  • Loading branch information
Swyter committed May 15, 2024
1 parent 904f491 commit cce5727
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions main_create.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,8 @@ void MainWindow::createMenus()
editMenu->addAction(editPasteVertAniAct);
editMenu->addAction(editPasteAniLowerPartsAct);
editMenu->addAction(editPasteHitboxAct);
editMenu->addSeparator();
editMenu->addAction(repeatLastCommandAct);

importMenu->addAction(importStaticMeshAct);
importMenu->addAction(importSkinnedMeshAct);
Expand Down Expand Up @@ -132,8 +134,6 @@ void MainWindow::createMenus()
toolMenu->addSeparator();
toolMenu->addAction(activateRulerAct);
toolMenu->addAction(activateFloatingProbeAct);
toolMenu->addSeparator();
toolMenu->addAction(repeatLastCommandAct);


/* VIEW OPTIONS */
Expand Down

0 comments on commit cce5727

Please sign in to comment.