From ca02feedc6edfbd71261ffb782e93067ffb0f32a Mon Sep 17 00:00:00 2001 From: Leena Miettinen Date: Tue, 5 Apr 2016 14:18:58 +0200 Subject: [PATCH] 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 --- src/plugins/imageviewer/imageviewerplugin.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/plugins/imageviewer/imageviewerplugin.cpp b/src/plugins/imageviewer/imageviewerplugin.cpp index 12d0f865245..2193c5c43c6 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())