diff options
author | toasted-nutbread <toasted-nutbread@users.noreply.github.com> | 2022-04-03 22:52:53 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-04-03 22:52:53 -0400 |
commit | e5b53bb238e59b1cd6371c0379d6171a3e1e68fa (patch) | |
tree | 9b547a78dc492ef6f4dd75a3def0d56f52f19262 /ext/data | |
parent | 77c4d135c788c5e3606af4519b5f9bb5010f6fed (diff) |
Hide popup on cursor exit (#2109)
* Update phrasing
* Add new options
* Add settings
* Implement
Diffstat (limited to 'ext/data')
-rw-r--r-- | ext/data/schemas/options-schema.json | 13 |
1 files changed, 12 insertions, 1 deletions
diff --git a/ext/data/schemas/options-schema.json b/ext/data/schemas/options-schema.json index 74ae3300..ef86f8c3 100644 --- a/ext/data/schemas/options-schema.json +++ b/ext/data/schemas/options-schema.json @@ -436,7 +436,9 @@ "enableOnSearchPage", "enableSearchTags", "layoutAwareScan", - "matchTypePrefix" + "matchTypePrefix", + "hidePopupOnCursorExit", + "hidePopupOnCursorExitDelay" ], "properties": { "inputs": { @@ -663,6 +665,15 @@ "matchTypePrefix": { "type": "boolean", "default": false + }, + "hidePopupOnCursorExit": { + "type": "boolean", + "default": false + }, + "hidePopupOnCursorExitDelay": { + "type": "number", + "minimum": 0, + "default": 0 } } }, |