| Summary: | one shortcut for two functions should be reconsidered | ||
|---|---|---|---|
| Product: | [Applications] kspaceduel | Reporter: | Frederik Schwarzer <schwarzer> |
| Component: | general | Assignee: | Andreas Zehender <zehender> |
| Status: | CLOSED FIXED | ||
| Severity: | normal | ||
| Priority: | NOR | ||
| Version First Reported In: | 1.1 | ||
| Target Milestone: | --- | ||
| Platform: | Debian testing | ||
| OS: | Linux | ||
| Latest Commit: | Version Fixed/Implemented In: | ||
| Sentry Crash Report: | |||
SVN commit 612829 by aacid:
Fix two shortcuts using Ctrl+N, new round is Ctrl+R now
BUGS: 128797
M +1 -1 topwidget.cpp
--- branches/KDE/3.5/kdegames/kspaceduel/topwidget.cpp #612828:612829
@@ -65,7 +65,7 @@
KStdGameAction::quit(this, SLOT(close()), actionCollection());
KStdGameAction::gameNew(playfield, SLOT(newGame()), actionCollection());
( void )new KAction( i18n( "&New Round" ), "spnewround",
- CTRL + Key_N, playfield, SLOT( newRound( ) ),
+ CTRL + Key_R, playfield, SLOT( newRound( ) ),
actionCollection( ), "new_round" );
MyMainView::pauseAction =
KStdGameAction::pause(playfield, SLOT(togglePause()), actionCollection());
|
Version: 1.1 (using KDE KDE 3.5.3) Installed from: Debian testing/unstable Packages OS: Linux There is one shortcut (Ctrl+N) bound to two function ("New game" and "New round"). A little Menu appears where to choose the wanted function. Maybe a little bit to much for a shortcut.