Fix broken width and height location in frames

This commit is contained in:
Jay Kamat 2017-12-07 13:03:06 -05:00
parent c737d7ab22
commit 052823b74c
No known key found for this signature in database
GPG Key ID: 5D2E399600F4F7B5

View File

@ -129,8 +129,8 @@ window._qutebrowser.webelem = (function() {
"right": rect.right + frame_offset_rect.right,
"bottom": rect.bottom + frame_offset_rect.bottom,
"left": rect.left + frame_offset_rect.left,
"height": rect.height + frame_offset_rect.height,
"width": rect.width + frame_offset_rect.width,
"height": rect.height,
"width": rect.width,
});
}