mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
Bug 895827 - pass null if we don't have a placement, r=jaws
This commit is contained in:
parent
cf893271fe
commit
df11c8424a
@ -875,8 +875,7 @@ CustomizeMode.prototype = {
|
||||
if (!placement) {
|
||||
LOG("Could not get a position for " + aTargetNode + "#" + aTargetNode.id + "." + aTargetNode.className);
|
||||
}
|
||||
let position = placement ? placement.position :
|
||||
aTargetArea.childElementCount;
|
||||
let position = placement ? placement.position : null;
|
||||
|
||||
|
||||
// Is the target area the same as the origin? Since we've already handled
|
||||
|
Loading…
Reference in New Issue
Block a user