Merge pull request #3784 from matrix-org/t3chguy/fix_stickerPickerChevronOffset

Fix sticker picker chevron offset calculation
This commit is contained in:
Michael Telatynski 2019-12-27 16:52:46 +00:00 committed by GitHub
commit 2b39f3bdf1
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -315,8 +315,8 @@ export default class Stickerpicker extends React.Component {
// Offset the chevron location, which is relative to the left of the context menu
// (10 = offset when context menu would not be displayed off viewport)
// (8 = value required in practice (possibly 10 - 2 where the 2 = context menu borders)
const stickerPickerChevronOffset = Math.max(10, 8 + window.pageXOffset + buttonRect.left - x);
// (2 = context menu borders)
const stickerPickerChevronOffset = Math.max(10, 2 + window.pageXOffset + buttonRect.left - x);
const y = (buttonRect.top + (buttonRect.height / 2) + window.pageYOffset) - 19;