diff --git a/src/ext/conf/ExtConfPatches.ts b/src/ext/conf/ExtConfPatches.ts index 718e25c..bf46c02 100644 --- a/src/ext/conf/ExtConfPatches.ts +++ b/src/ext/conf/ExtConfPatches.ts @@ -243,6 +243,15 @@ const ExtensionConfPatch = [ onKeyDown: false, } }); + userOptions.commands.crop.push({ + action: 'set-ar', + label: '32:9', + comment: 'Crop for 32:9 aspect ratio', + arguments: { + type: AspectRatioType.Fixed, + ratio: 3.56 + }, + }) } } ]; diff --git a/src/ext/conf/ExtensionConf.ts b/src/ext/conf/ExtensionConf.ts index 0aacff7..b21d1f9 100644 --- a/src/ext/conf/ExtensionConf.ts +++ b/src/ext/conf/ExtensionConf.ts @@ -302,6 +302,14 @@ const ExtensionConf: SettingsInterface = { onKeyUp: false, onKeyDown: true, } + }, { + action: 'set-ar', + label: '32:9', + comment: 'Crop for 32:9 aspect ratio', + arguments: { + type: AspectRatioType.Fixed, + ratio: 3.56 + }, }], stretch: [{ action: 'set-stretch',