Skip to content

Commit

Permalink
Merge pull request #5002 from salkhordeh/fix-bidi-selection
Browse files Browse the repository at this point in the history
Fix bidi selection
  • Loading branch information
nightwing authored Nov 23, 2022
2 parents 8562f94 + 11448fd commit fa64f84
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/layer/marker.js
Original file line number Diff line number Diff line change
Expand Up @@ -193,7 +193,7 @@ var Marker = function(parentEl) {
this.elt(
clazz,
"height:" + height + "px;" +
"width:" + selection.width + (extraLength || 0) + "px;" +
"width:" + (selection.width + (extraLength || 0)) + "px;" +
"top:" + top + "px;" +
"left:" + (padding + selection.left) + "px;" + (extraStyle || "")
);
Expand Down

0 comments on commit fa64f84

Please sign in to comment.