diff --git a/crates/radicle-term/src/table.rs b/crates/radicle-term/src/table.rs index 0b7db0b1..6e4e1aef 100644 --- a/crates/radicle-term/src/table.rs +++ b/crates/radicle-term/src/table.rs @@ -182,6 +182,11 @@ impl Table { } } + pub fn with_opts(mut self, opts: TableOptions) -> Self { + self.opts = opts; + self + } + pub fn size(&self, parent: Constraint) -> Size { self.outer(parent) }