mirror of
https://github.com/helix-editor/helix.git
synced 2025-04-04 03:17:45 +03:00
parent
bf43fabf65
commit
5292fe0f7d
2 changed files with 33 additions and 5 deletions
|
@ -36,7 +36,7 @@ use std::collections::HashMap;
|
|||
/// capabilities of [`Text`].
|
||||
#[derive(Debug, Clone, PartialEq, Default)]
|
||||
pub struct Cell<'a> {
|
||||
content: Text<'a>,
|
||||
pub content: Text<'a>,
|
||||
style: Style,
|
||||
}
|
||||
|
||||
|
@ -81,7 +81,7 @@ where
|
|||
/// By default, a row has a height of 1 but you can change this using [`Row::height`].
|
||||
#[derive(Debug, Clone, PartialEq, Default)]
|
||||
pub struct Row<'a> {
|
||||
cells: Vec<Cell<'a>>,
|
||||
pub cells: Vec<Cell<'a>>,
|
||||
height: u16,
|
||||
style: Style,
|
||||
bottom_margin: u16,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue