mirror of
https://github.com/helix-editor/helix.git
synced 2025-04-05 20:07:44 +03:00
view: Disable tree.fullscreen for now to appease clippy.
This commit is contained in:
parent
d0791e0f98
commit
0827c45d94
1 changed files with 2 additions and 2 deletions
|
@ -9,7 +9,7 @@ pub struct Tree {
|
||||||
// (container, index inside the container)
|
// (container, index inside the container)
|
||||||
current: (Key, usize),
|
current: (Key, usize),
|
||||||
pub focus: Key,
|
pub focus: Key,
|
||||||
fullscreen: bool,
|
// fullscreen: bool,
|
||||||
area: Rect,
|
area: Rect,
|
||||||
|
|
||||||
nodes: HopSlotMap<Key, Node>,
|
nodes: HopSlotMap<Key, Node>,
|
||||||
|
@ -73,7 +73,7 @@ impl Tree {
|
||||||
root,
|
root,
|
||||||
current: (root, 0),
|
current: (root, 0),
|
||||||
focus: Key::default(),
|
focus: Key::default(),
|
||||||
fullscreen: false,
|
// fullscreen: false,
|
||||||
area,
|
area,
|
||||||
nodes,
|
nodes,
|
||||||
stack: Vec::new(),
|
stack: Vec::new(),
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue