Fix overlay position calculation
(but keep rounding)
This commit is contained in:
parent
d637657a99
commit
4ab5fa564d
1 changed files with 3 additions and 1 deletions
|
@ -149,7 +149,9 @@ impl Element for Overlay {
|
|||
desired.origin.y = limits.origin.y;
|
||||
}
|
||||
|
||||
cx.with_element_offset(desired.origin - bounds.origin, |cx| {
|
||||
let mut offset = cx.element_offset() + desired.origin - bounds.origin;
|
||||
offset = point(offset.x.round(), offset.y.round());
|
||||
cx.with_absolute_element_offset(offset, |cx| {
|
||||
cx.break_content_mask(|cx| {
|
||||
for child in &mut self.children {
|
||||
child.paint(cx);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue