swapped shortcuts for "zoom to fit" and "zoom to fit crop"

This commit is contained in:
Alberto Griggio
2018-01-06 18:01:54 +01:00
parent c05dbf0eb0
commit 857f39eb88
2 changed files with 4 additions and 4 deletions

View File

@@ -1643,7 +1643,7 @@ bool EditorPanel::handleShortcutKey (GdkEventKey* event)
return true;
case GDK_KEY_f:
iareapanel->imageArea->zoomPanel->zoomFitClicked();
iareapanel->imageArea->zoomPanel->zoomFitCropClicked();
return true;
case GDK_KEY_F5:
@@ -1718,7 +1718,7 @@ bool EditorPanel::handleShortcutKey (GdkEventKey* event)
return true;
case GDK_KEY_f:
iareapanel->imageArea->zoomPanel->zoomFitCropClicked();
iareapanel->imageArea->zoomPanel->zoomFitClicked();
return true;
}
}