diff options
author | Kuuuube <61125188+Kuuuube@users.noreply.github.com> | 2024-04-25 08:38:46 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-04-25 12:38:46 +0000 |
commit | 0c29b10a711f2ff9978ec9898867eb0aae88298d (patch) | |
tree | a05a2510c34e62b15865e4dde1418b75d42c444b /types | |
parent | f0196aaf6beac57e17972c87153376bbbcdd7282 (diff) |
Add option to disable furigana and reading in Term display style (#862)
* Add option to disable furigana and reading in `Term display style`
* Also hide search reading
Diffstat (limited to 'types')
-rw-r--r-- | types/ext/settings.d.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/types/ext/settings.d.ts b/types/ext/settings.d.ts index 4e3b185a..1fce0f59 100644 --- a/types/ext/settings.d.ts +++ b/types/ext/settings.d.ts @@ -373,7 +373,7 @@ export type PopupActionBarLocation = 'left' | 'right' | 'top' | 'bottom'; export type FrequencyDisplayMode = 'tags' | 'tags-grouped' | 'split-tags' | 'split-tags-grouped' | 'inline-list' | 'list'; -export type TermDisplayMode = 'ruby' | 'ruby-and-reading' | 'term-and-reading'; +export type TermDisplayMode = 'ruby' | 'ruby-and-reading' | 'term-and-reading' | 'term-only'; export type SortFrequencyDictionaryOrder = 'ascending' | 'descending'; |