aboutsummaryrefslogtreecommitdiff
path: root/helix-view/src
diff options
context:
space:
mode:
authorwojciechkepka2021-06-20 05:15:08 +0000
committerBlaž Hrastnik2021-06-20 10:59:26 +0000
commit0882712b4598586ce7c9b8e8f446d6a6fc5ff060 (patch)
treed0ec62d1d726ed3a377e3d1914a6cf9b0bdd0b0a /helix-view/src
parent980e6023523119676652b49692eb5f844d84d703 (diff)
Use full screen size
Diffstat (limited to 'helix-view/src')
-rw-r--r--helix-view/src/tree.rs4
1 files changed, 4 insertions, 0 deletions
diff --git a/helix-view/src/tree.rs b/helix-view/src/tree.rs
index a0c466d9..f7d6c1f2 100644
--- a/helix-view/src/tree.rs
+++ b/helix-view/src/tree.rs
@@ -434,6 +434,10 @@ impl Tree {
self.focus = key;
}
}
+
+ pub fn area(&self) -> Rect {
+ self.area
+ }
}
#[derive(Debug)]