refactor: move expression
_
This commit is contained in:
parent
b3b1c88d27
commit
af3b670de6
2 changed files with 2 additions and 6 deletions
|
@ -179,6 +179,7 @@ impl EditorView {
|
|||
}
|
||||
|
||||
Self::render_rulers(editor, doc, view, inner, surface, theme);
|
||||
Self::render_inline_blame(&config.inline_blame, doc, view, &mut decorations, theme);
|
||||
|
||||
let primary_cursor = doc
|
||||
.selection(view.id)
|
||||
|
@ -204,8 +205,6 @@ impl EditorView {
|
|||
config.end_of_line_diagnostics,
|
||||
));
|
||||
|
||||
Self::render_inline_blame(&config.inline_blame, doc, view, &mut decorations, theme);
|
||||
|
||||
render_document(
|
||||
surface,
|
||||
inner,
|
||||
|
|
|
@ -20,10 +20,7 @@ pub struct InlineBlame {
|
|||
|
||||
impl InlineBlame {
|
||||
pub fn new(style: Style, lines: LineBlame) -> Self {
|
||||
InlineBlame {
|
||||
style,
|
||||
lines,
|
||||
}
|
||||
InlineBlame { style, lines }
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue