1
0
mirror of https://github.com/emilk/egui.git synced 2026-09-02 06:40:06 -04:00

Remove fallback_gap

This commit is contained in:
Lucas Meurer
2026-08-27 13:18:57 +02:00
parent 80ff62e2be
commit 72699b7032
3 changed files with 7 additions and 11 deletions

View File

@@ -107,13 +107,6 @@ impl<'a> AtomLayout<'a> {
self
}
/// Set the gap between atoms, unless [`Self::gap`] already set one.
#[inline]
pub fn fallback_gap(mut self, gap: f32) -> Self {
self.gap.get_or_insert(gap);
self
}
/// Set the [`Frame`].
#[inline]
pub fn frame(mut self, frame: Frame) -> Self {