aboutsummaryrefslogtreecommitdiff
path: root/helix-view
diff options
context:
space:
mode:
authorBlaž Hrastnik2021-02-18 09:36:24 +0000
committerBlaž Hrastnik2021-02-18 09:36:24 +0000
commit0827c45d9421ae946f35f994446829e37f73b711 (patch)
tree2d4e52466b43426b9131162ee49e56cf63f72529 /helix-view
parentd0791e0f981a64b0c382c022ff79b0376cc09962 (diff)
view: Disable tree.fullscreen for now to appease clippy.
Diffstat (limited to 'helix-view')
-rw-r--r--helix-view/src/tree.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/helix-view/src/tree.rs b/helix-view/src/tree.rs
index dd07d76d..9d31a33e 100644
--- a/helix-view/src/tree.rs
+++ b/helix-view/src/tree.rs
@@ -9,7 +9,7 @@ pub struct Tree {
// (container, index inside the container)
current: (Key, usize),
pub focus: Key,
- fullscreen: bool,
+ // fullscreen: bool,
area: Rect,
nodes: HopSlotMap<Key, Node>,
@@ -73,7 +73,7 @@ impl Tree {
root,
current: (root, 0),
focus: Key::default(),
- fullscreen: false,
+ // fullscreen: false,
area,
nodes,
stack: Vec::new(),