2016-09-05 19:19:04 +00:00
|
|
|
commit 1e7aca9289f61c8875e91898ba131516d038bb4f
|
|
|
|
Author: Dominique Leuenberger <dimstar@opensuse.org>
|
|
|
|
Date: Sun Sep 4 11:00:38 2016 +0200
|
|
|
|
|
|
|
|
Qt: Change mnemonic for 'Play' (&Play => P&lay)
|
|
|
|
|
|
|
|
ALT-P is bound to 'play' inside the submenu already. Using it duplicated
|
|
|
|
can result in Qt showing popover, warning about "Ambiguous shortcut overload: Alt+P"
|
|
|
|
|
|
|
|
diff --git a/modules/gui/qt4/dialogs/open.cpp b/modules/gui/qt4/dialogs/open.cpp
|
|
|
|
index d85e976..83712b9 100644
|
|
|
|
--- a/modules/gui/qt4/dialogs/open.cpp
|
|
|
|
+++ b/modules/gui/qt4/dialogs/open.cpp
|
|
|
|
@@ -114,7 +114,7 @@ OpenDialog::OpenDialog( QWidget *parent,
|
|
|
|
QMenu * openButtonMenu = new QMenu( "Open", playButton );
|
|
|
|
openButtonMenu->addAction( qtr( "&Enqueue" ), this, SLOT( enqueue() ),
|
|
|
|
QKeySequence( "Alt+E" ) );
|
|
|
|
- openButtonMenu->addAction( qtr( "&Play" ), this, SLOT( play() ),
|
|
|
|
+ openButtonMenu->addAction( qtr( "P&lay" ), this, SLOT( play() ),
|
|
|
|
QKeySequence( "Alt+P" ) );
|
|
|
|
openButtonMenu->addAction( qtr( "&Stream" ), this, SLOT( stream() ) ,
|
|
|
|
QKeySequence( "Alt+S" ) );
|
|
|
|
|
|
|
|
commit 02f593441cf536f50071a4a8a088b56f30d53588
|
|
|
|
Author: Dominique Leuenberger <dimstar@opensuse.org>
|
|
|
|
Date: Fri Aug 5 09:29:01 2016 +0200
|
|
|
|
|
|
|
|
Qt: Change keyboard shortcut for 'Capture Device'
|
|
|
|
|
|
|
|
'D' is already used by 'Disc' in the same dialog.
|
|
|
|
|
|
|
|
diff --git a/modules/gui/qt4/dialogs/open.cpp b/modules/gui/qt4/dialogs/open.cpp
|
|
|
|
index 224cfa5..d85e976 100644
|
|
|
|
--- a/modules/gui/qt4/dialogs/open.cpp
|
|
|
|
+++ b/modules/gui/qt4/dialogs/open.cpp
|
2016-08-06 18:36:32 +00:00
|
|
|
@@ -93,7 +93,7 @@ OpenDialog::OpenDialog( QWidget *parent,
|
|
|
|
ui.Tab->insertTab( OPEN_NETWORK_TAB, netOpenPanel, QIcon( ":/type/network" ),
|
|
|
|
qtr( "&Network" ) );
|
|
|
|
ui.Tab->insertTab( OPEN_CAPTURE_TAB, captureOpenPanel,
|
|
|
|
- QIcon( ":/type/capture-card" ), qtr( "Capture &Device" ) );
|
|
|
|
+ QIcon( ":/type/capture-card" ), qtr( "Capture De&vice" ) );
|
|
|
|
|
|
|
|
/* Hide the Slave input widgets */
|
|
|
|
ui.slaveLabel->hide();
|