Added new crop ratio 64:27, #4053

This commit is contained in:
Morgan Hardwood
2017-09-03 17:18:34 +02:00
parent d434a09055
commit 5e40049297

View File

@@ -148,7 +148,7 @@ Crop::Crop (): FoldableToolPanel(this, "crop", M("TP_CROP_LABEL"), false, true),
/****************
* Crop Ratio
*****************/
int NumberOfCropRatios = 26; //!!! change this value when adding new crop ratios
int NumberOfCropRatios = 27; //!!! change this value when adding new crop ratios
cropratio.resize (NumberOfCropRatios);
// Landscape Portrait
cropratio[0].label = "3:2";
@@ -203,8 +203,8 @@ Crop::Crop (): FoldableToolPanel(this, "crop", M("TP_CROP_LABEL"), false, true),
cropratio[24].value = 17.0 / 22.0; // 1.294 0.772...
cropratio[25].label = "45:35 - ePassport";
cropratio[25].value = 45.0 / 35.0; // 1.285 0.777...
cropratio[26].label = "64:27";
cropratio[26].value = 64.0 / 27.0; // 2.370... 0.421...
// populate the combobox
for (int i = 0; i < NumberOfCropRatios; i++) {