Commit cd1de468 authored by Vikram Narayanan's avatar Vikram Narayanan Committed by Jean-Baptiste Kempf

dialogs/open.cpp: Change the shortcut for convert/save

Change the shortcut for convert/save to 'Alt+O' as 'Alt+C'
conflicts with the Cancel button.
Signed-off-by: default avatarVikram Narayanan <vikram186@gmail.com>
Signed-off-by: default avatarJean-Baptiste Kempf <jb@videolan.org>
parent a7ceba8e
......@@ -119,8 +119,8 @@ OpenDialog::OpenDialog( QWidget *parent,
QKeySequence( "Alt+P" ) );
openButtonMenu->addAction( qtr( "&Stream" ), this, SLOT( stream() ) ,
QKeySequence( "Alt+S" ) );
openButtonMenu->addAction( qtr( "&Convert" ), this, SLOT( transcode() ) ,
QKeySequence( "Alt+C" ) );
openButtonMenu->addAction( qtr( "C&onvert" ), this, SLOT( transcode() ) ,
QKeySequence( "Alt+O" ) );
playButton->setMenu( openButtonMenu );
......@@ -203,7 +203,7 @@ void OpenDialog::setMenuAction()
playButton->setText( qtr( "&Stream" ) );
break;
case OPEN_AND_SAVE:
playButton->setText( qtr( "&Convert / Save" ) );
playButton->setText( qtr( "C&onvert / Save" ) );
break;
case OPEN_AND_ENQUEUE:
playButton->setText( qtr( "&Enqueue" ) );
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment