mirror of
https://github.com/helix-editor/helix.git
synced 2025-04-03 02:47:45 +03:00
Fix clippy lints (#6454)
This commit is contained in:
parent
5323020c3f
commit
198ff2c3f9
4 changed files with 8 additions and 18 deletions
|
@ -7,8 +7,9 @@ use crate::{
|
|||
use helix_view::graphics::{Rect, Style};
|
||||
|
||||
/// Border render type. Defaults to [`BorderType::Plain`].
|
||||
#[derive(Debug, Clone, Copy, PartialEq, Eq)]
|
||||
#[derive(Debug, Default, Clone, Copy, PartialEq, Eq)]
|
||||
pub enum BorderType {
|
||||
#[default]
|
||||
Plain,
|
||||
Rounded,
|
||||
Double,
|
||||
|
@ -26,12 +27,6 @@ impl BorderType {
|
|||
}
|
||||
}
|
||||
|
||||
impl Default for BorderType {
|
||||
fn default() -> BorderType {
|
||||
BorderType::Plain
|
||||
}
|
||||
}
|
||||
|
||||
/// Base widget to be used with all upper level ones. It may be used to display a box border around
|
||||
/// the widget and/or add a title.
|
||||
///
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue