1
0
mirror of https://github.com/laurent22/joplin.git synced 2025-11-29 22:48:10 +02:00

Desktop: Resolves #12224: Add an option to enable or disable search in OCR text (#12578)

This commit is contained in:
pedr
2025-08-06 06:37:20 -03:00
committed by GitHub
parent b6d32831c6
commit 3f75d770f7
3 changed files with 42 additions and 2 deletions

View File

@@ -594,6 +594,16 @@ const builtInMetadata = (Setting: typeof SettingType) => {
label: () => _('OCR: Clear cache and re-download language data files'),
},
'ocr.searchInExtractedContent': {
value: true,
type: SettingItemType.Bool,
advanced: true,
public: true,
appTypes: [AppType.Desktop],
storage: SettingStorage.Database,
label: () => _('OCR: Search in extracted content'),
},
theme: {
value: Setting.THEME_LIGHT,
type: SettingItemType.Int,