diff options
| author | Ivan Molodetskikh <yalterz@gmail.com> | 2025-01-21 09:40:00 +0300 |
|---|---|---|
| committer | Ivan Molodetskikh <yalterz@gmail.com> | 2025-01-21 11:31:30 +0300 |
| commit | c892f04c9603e469aeb5e8a965193807c54d6978 (patch) | |
| tree | b74da23c3f835994f3219d81700dca935da6d08e /src/layout/mod.rs | |
| parent | 3aad5a39eaf66e40abac5f8fdb720fdbe65eb754 (diff) | |
| download | niri-c892f04c9603e469aeb5e8a965193807c54d6978.tar.gz niri-c892f04c9603e469aeb5e8a965193807c54d6978.tar.bz2 niri-c892f04c9603e469aeb5e8a965193807c54d6978.zip | |
tile: Rename update() to update_render_elements()
Diffstat (limited to 'src/layout/mod.rs')
| -rw-r--r-- | src/layout/mod.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/layout/mod.rs b/src/layout/mod.rs index 91e53c8c..eb702c37 100644 --- a/src/layout/mod.rs +++ b/src/layout/mod.rs @@ -2453,7 +2453,7 @@ impl<W: LayoutElement> Layout<W> { let pos_within_output = move_.tile_render_location(); let view_rect = Rectangle::new(pos_within_output.upscale(-1.), output_size(&move_.output)); - move_.tile.update(true, view_rect); + move_.tile.update_render_elements(true, view_rect); } } |
