Bug 128797

Summary: one shortcut for two functions should be reconsidered
Product: [Applications] kspaceduel Reporter: Frederik Schwarzer <schwarzer>
Component: generalAssignee: Andreas Zehender <zehender>
Status: CLOSED FIXED    
Severity: normal    
Priority: NOR    
Version: 1.1   
Target Milestone: ---   
Platform: Debian testing   
OS: Linux   
Latest Commit: Version Fixed In:

Description Frederik Schwarzer 2006-06-07 23:08:50 UTC
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.
Comment 1 Albert Astals Cid 2006-12-12 19:31:18 UTC
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());