diff options
| author | Ivan Molodetskikh <yalterz@gmail.com> | 2023-12-26 17:28:52 +0400 |
|---|---|---|
| committer | Ivan Molodetskikh <yalterz@gmail.com> | 2023-12-26 17:28:52 +0400 |
| commit | 77b4715e0ba28ab324faa990d6c2b02ade01f2e2 (patch) | |
| tree | 2d828318d1416cbd9a1609f151c03c51b4727e28 /src/layout | |
| parent | c048abc8b50dc7fa79c117518d510059717aa356 (diff) | |
| download | niri-77b4715e0ba28ab324faa990d6c2b02ade01f2e2.tar.gz niri-77b4715e0ba28ab324faa990d6c2b02ade01f2e2.tar.bz2 niri-77b4715e0ba28ab324faa990d6c2b02ade01f2e2.zip | |
Use correct type alias in FocusRing::render
Diffstat (limited to 'src/layout')
| -rw-r--r-- | src/layout/focus_ring.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/layout/focus_ring.rs b/src/layout/focus_ring.rs index 9385fc6b..cbcde19c 100644 --- a/src/layout/focus_ring.rs +++ b/src/layout/focus_ring.rs @@ -77,7 +77,7 @@ impl FocusRing { } } - pub fn render(&self, scale: Scale<f64>) -> impl Iterator<Item = SolidColorRenderElement> { + pub fn render(&self, scale: Scale<f64>) -> impl Iterator<Item = FocusRingRenderElement> { let mut rv = ArrayVec::<_, 4>::new(); if self.is_off { |
