[vlc-commits] dialogs/open.cpp: Change the shortcut for convert/save
Vikram Narayanan
git at videolan.org
Sat May 12 03:38:33 CEST 2012
vlc | branch: master | Vikram Narayanan <vikram186 at gmail.com> | Thu May 3 01:15:48 2012 +0530| [cd1de468d116e679aadcf00f6a66b68fb7c56fa3] | committer: 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: Vikram Narayanan <vikram186 at gmail.com>
Signed-off-by: Jean-Baptiste Kempf <jb at videolan.org>
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=cd1de468d116e679aadcf00f6a66b68fb7c56fa3
---
modules/gui/qt4/dialogs/open.cpp | 6 +++---
1 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/modules/gui/qt4/dialogs/open.cpp b/modules/gui/qt4/dialogs/open.cpp
index 6f83e93..72f8b1d 100644
--- a/modules/gui/qt4/dialogs/open.cpp
+++ b/modules/gui/qt4/dialogs/open.cpp
@@ -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" ) );
More information about the vlc-commits
mailing list