Skip to content

Commit

Permalink
Make Borders u8
Browse files Browse the repository at this point in the history
  • Loading branch information
pickfire authored and archseer committed May 22, 2022
1 parent 1837b5e commit 5bcb31a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion helix-tui/src/widgets/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ use helix_view::graphics::Rect;
bitflags! {
/// Bitflags that can be composed to set the visible borders essentially on the block widget.
#[derive(Default)]
pub struct Borders: u32 {
pub struct Borders: u8 {
/// Show the top border
const TOP = 0b0000_0001;
/// Show the right border
Expand Down

0 comments on commit 5bcb31a

Please sign in to comment.