make google lens tool use normal region selection by default

This commit is contained in:
end-4
2025-10-20 22:00:08 +02:00
parent cc605e24d9
commit 075a21a9db
5 changed files with 29 additions and 8 deletions
@@ -147,5 +147,19 @@ ContentPage {
}
}
}
ContentSubsection {
title: Translation.tr("Google Lens")
ConfigSelectionArray {
currentValue: Config.options.search.imageSearch.useCircleSelection ? "circle" : "rectangles"
onSelected: newValue => {
Config.options.search.imageSearch.useCircleSelection = (newValue === "circle");
}
options: [
{ icon: "activity_zone", value: "rectangles", displayName: Translation.tr("Rectangular selection") },
{ icon: "gesture", value: "circle", displayName: Translation.tr("Circle to Search") }
]
}
}
}
}