aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/imageviewer
diff options
context:
space:
mode:
authorLeena Miettinen <riitta-leena.miettinen@theqtcompany.com>2016-04-05 14:18:58 +0200
committerLeena Miettinen <riitta-leena.miettinen@theqtcompany.com>2016-04-05 12:36:15 +0000
commitca02feedc6edfbd71261ffb782e93067ffb0f32a (patch)
tree987d13fee43f798b0dd232e468d5c546b8586286 /src/plugins/imageviewer
parent1ec4bbb0297b23331389eac7a229b4312867ca53 (diff)
Image Viewer: Fix capitalization for an action
Write prepositions in lower case also in action names, when they are not the first or last word in the name. Change-Id: I606b10ff9a08bb8542a03fc5a8a8f19dfd96277e Reviewed-by: Friedemann Kleint <Friedemann.Kleint@theqtcompany.com>
Diffstat (limited to 'src/plugins/imageviewer')
-rw-r--r--src/plugins/imageviewer/imageviewerplugin.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/imageviewer/imageviewerplugin.cpp b/src/plugins/imageviewer/imageviewerplugin.cpp
index 12d0f86524..2193c5c43c 100644
--- a/src/plugins/imageviewer/imageviewerplugin.cpp
+++ b/src/plugins/imageviewer/imageviewerplugin.cpp
@@ -86,7 +86,7 @@ void ImageViewerPlugin::extensionsInitialized()
iv->resetToOriginalSize();
});
- a = registerNewAction(Constants::ACTION_FIT_TO_SCREEN, tr("Fit To Screen"),
+ a = registerNewAction(Constants::ACTION_FIT_TO_SCREEN, tr("Fit to Screen"),
QKeySequence(tr("Ctrl+=")));
connect(a, &QAction::triggered, this, [this]() {
if (ImageViewer *iv = currentImageViewer())