diff options
author | toasted-nutbread <toasted-nutbread@users.noreply.github.com> | 2022-05-18 19:12:24 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-05-18 19:12:24 -0400 |
commit | 18beb241a767035f9701b7971d6be1d077b1fa95 (patch) | |
tree | bd587e833ab358e123ad04062cd475986e673f74 /ext/js | |
parent | bd53f2bbfb5cd523318d54779e40ceea7ba68874 (diff) |
Fix this._horizontalTextPositionBelow being assigned incorrectly (#2144)
Diffstat (limited to 'ext/js')
-rw-r--r-- | ext/js/app/popup.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/js/app/popup.js b/ext/js/app/popup.js index 97808b31..e3ac4dc3 100644 --- a/ext/js/app/popup.js +++ b/ext/js/app/popup.js @@ -870,7 +870,7 @@ class Popup extends EventDispatcher { this._horizontalOffset2 = general.popupHorizontalOffset2; this._verticalOffset2 = general.popupVerticalOffset2; this._verticalTextPosition = general.popupVerticalTextPosition; - this._horizontalTextPositionBelow = (this._verticalTextPosition === 'below'); + this._horizontalTextPositionBelow = (general.popupHorizontalTextPosition === 'below'); this._displayMode = general.popupDisplayMode; this._displayModeIsFullWidth = (this._displayMode === 'full-width'); this._scaleRelativeToVisualViewport = general.popupScaleRelativeToVisualViewport; |