diff options
author | toasted-nutbread <toasted-nutbread@users.noreply.github.com> | 2020-12-19 20:07:55 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-12-19 20:07:55 -0500 |
commit | 443d6d1956691861a5e0203e33726b8c2aa93eef (patch) | |
tree | c302124766dde3f87454682508331b4647c71e8f /ext/mixed/js | |
parent | 8454431cdbc026e56c4879c5fc0133647a6f75ca (diff) |
Popup action bar options (#1140)
* Add options for action bar visibility and location
* Add settings
* Update styles
* Expose properties
* Update styles
* Update tests
Diffstat (limited to 'ext/mixed/js')
-rw-r--r-- | ext/mixed/js/display.js | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/ext/mixed/js/display.js b/ext/mixed/js/display.js index f600da63..4929cfaa 100644 --- a/ext/mixed/js/display.js +++ b/ext/mixed/js/display.js @@ -837,6 +837,8 @@ class Display extends EventDispatcher { data.debug = `${options.general.debugInfo}`; data.popupDisplayMode = `${options.general.popupDisplayMode}`; data.popupCurrentIndicatorMode = `${options.general.popupCurrentIndicatorMode}`; + data.popupActionBarVisibility = `${options.general.popupActionBarVisibility}`; + data.popupActionBarLocation = `${options.general.popupActionBarLocation}`; } _updateTheme(themeName) { |