aboutsummaryrefslogtreecommitdiff
path: root/src/plugins/General
diff options
context:
space:
mode:
authortrialuser02 <trialuser02@90c681e8-e032-0410-971d-27865f9a5e38>2021-04-29 18:43:30 +0000
committertrialuser02 <trialuser02@90c681e8-e032-0410-971d-27865f9a5e38>2021-04-29 18:43:30 +0000
commit40f4ac40990f3d4a40ec054cdc4b32c654bd6b58 (patch)
tree4e40bc7dde0beec420e2aab6a6f2a3cc44bdc6a5 /src/plugins/General
parente2b50fa76544e374d9ccad178d91788797f21fae (diff)
downloadqmmp-40f4ac40990f3d4a40ec054cdc4b32c654bd6b58.tar.gz
qmmp-40f4ac40990f3d4a40ec054cdc4b32c654bd6b58.tar.bz2
qmmp-40f4ac40990f3d4a40ec054cdc4b32c654bd6b58.zip
added shortcuts for dock widgets
git-svn-id: http://svn.code.sf.net/p/qmmp-dev/code/trunk/qmmp@9865 90c681e8-e032-0410-971d-27865f9a5e38
Diffstat (limited to 'src/plugins/General')
-rw-r--r--src/plugins/General/library/libraryfactory.cpp2
-rw-r--r--src/plugins/General/lyrics/lyricsfactory.cpp2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/plugins/General/library/libraryfactory.cpp b/src/plugins/General/library/libraryfactory.cpp
index d14f266ed..a6ccd477c 100644
--- a/src/plugins/General/library/libraryfactory.cpp
+++ b/src/plugins/General/library/libraryfactory.cpp
@@ -35,7 +35,7 @@ GeneralProperties LibraryFactory::properties() const
properties.hasAbout = true;
properties.hasSettings = true;
properties.visibilityControl = false;
- properties.widgets = { { LIBRARY_WIDGET, tr("Library"), Qt::RightDockWidgetArea,
+ properties.widgets = { { LIBRARY_WIDGET, tr("Library"), tr("Ctrl+1"), Qt::RightDockWidgetArea,
Qt::LeftDockWidgetArea | Qt::RightDockWidgetArea } };
return properties;
}
diff --git a/src/plugins/General/lyrics/lyricsfactory.cpp b/src/plugins/General/lyrics/lyricsfactory.cpp
index 0382d3ab2..08b1d8154 100644
--- a/src/plugins/General/lyrics/lyricsfactory.cpp
+++ b/src/plugins/General/lyrics/lyricsfactory.cpp
@@ -33,7 +33,7 @@ GeneralProperties LyricsFactory::properties() const
properties.hasAbout = true;
properties.hasSettings = true;
properties.visibilityControl = false;
- properties.widgets = { { LYRICS_WIDGET, tr("Lyrics"), Qt::LeftDockWidgetArea, Qt::AllDockWidgetAreas } };
+ properties.widgets = { { LYRICS_WIDGET, tr("Lyrics"), tr("Ctrl+2"), Qt::LeftDockWidgetArea, Qt::AllDockWidgetAreas } };
return properties;
}