makepad_code_editor/
widgets.rs

1#[derive(Clone, Copy, Debug, Eq, Hash, PartialEq)]
2pub struct InlineWidget {
3    pub column_count: usize,
4}
5
6#[derive(Clone, Copy, Debug, PartialEq)]
7pub struct BlockWidget {
8    pub height: f64,
9}