diff options
author | toasted-nutbread <toasted-nutbread@users.noreply.github.com> | 2020-12-22 18:22:14 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-12-22 18:22:14 -0500 |
commit | c03340c4aa77c0a84b28bf18407aa79972697213 (patch) | |
tree | e9ac15274cf7e952ac19a3d53e160f4a4ed4a278 | |
parent | d0adf2ca156f92c4f62e8ee5082f26e21e4fde70 (diff) |
Change popupCurrentIndicatorMode default to triangle (#1161)
-rw-r--r-- | ext/bg/data/options-schema.json | 2 | ||||
-rw-r--r-- | ext/bg/js/options.js | 2 | ||||
-rw-r--r-- | test/test-options-util.js | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/ext/bg/data/options-schema.json b/ext/bg/data/options-schema.json index e4eb4a4e..6490bedc 100644 --- a/ext/bg/data/options-schema.json +++ b/ext/bg/data/options-schema.json @@ -272,7 +272,7 @@ "popupCurrentIndicatorMode": { "type": "string", "enum": ["none", "asterisk", "triangle", "bar-left", "bar-right", "dot-left", "dot-right"], - "default": "bar-left" + "default": "triangle" }, "popupActionBarVisibility": { "type": "string", diff --git a/ext/bg/js/options.js b/ext/bg/js/options.js index 6adfdd5e..fd4c078f 100644 --- a/ext/bg/js/options.js +++ b/ext/bg/js/options.js @@ -669,7 +669,7 @@ class OptionsUtil { delete options.global.showPopupPreview; for (const profile of options.profiles) { profile.options.general.maximumClipboardSearchLength = 1000; - profile.options.general.popupCurrentIndicatorMode = 'bar-left'; + profile.options.general.popupCurrentIndicatorMode = 'triangle'; profile.options.general.popupActionBarVisibility = 'auto'; profile.options.general.popupActionBarLocation = 'right'; } diff --git a/test/test-options-util.js b/test/test-options-util.js index 7ef5e0a1..2c8b421c 100644 --- a/test/test-options-util.js +++ b/test/test-options-util.js @@ -294,7 +294,7 @@ function createProfileOptionsUpdatedTestData1() { usePopupShadowDom: true, usePopupWindow: false, maximumClipboardSearchLength: 1000, - popupCurrentIndicatorMode: 'bar-left', + popupCurrentIndicatorMode: 'triangle', popupActionBarVisibility: 'auto', popupActionBarLocation: 'right' }, |