.
This commit is contained in:
parent
47e282804d
commit
4749b39b88
1 changed files with 3 additions and 1 deletions
|
@ -227,7 +227,9 @@ impl EditorView {
|
||||||
surface.set_string(1, viewport.y, mode, text_color);
|
surface.set_string(1, viewport.y, mode, text_color);
|
||||||
|
|
||||||
if let Some(path) = view.doc.relative_path() {
|
if let Some(path) = view.doc.relative_path() {
|
||||||
surface.set_string(6, viewport.y, path.to_string_lossy(), text_color);
|
let path = path.to_string_lossy();
|
||||||
|
surface.set_string(6, viewport.y, path, text_color);
|
||||||
|
// TODO: append [+] if modified
|
||||||
}
|
}
|
||||||
|
|
||||||
surface.set_string(
|
surface.set_string(
|
||||||
|
|
Loading…
Add table
Reference in a new issue