summaryrefslogtreecommitdiffstats
path: root/native/src
diff options
context:
space:
mode:
Diffstat (limited to 'native/src')
-rw-r--r--native/src/widget/pane_grid/state.rs12
1 files changed, 0 insertions, 12 deletions
diff --git a/native/src/widget/pane_grid/state.rs b/native/src/widget/pane_grid/state.rs
index dc66e32a..f46252c7 100644
--- a/native/src/widget/pane_grid/state.rs
+++ b/native/src/widget/pane_grid/state.rs
@@ -98,18 +98,6 @@ impl<T> State<T> {
self.internal.focus(pane);
}
- pub fn split_vertically(&mut self, pane: &Pane, state: T) -> Option<Pane> {
- self.split(Axis::Vertical, pane, state)
- }
-
- pub fn split_horizontally(
- &mut self,
- pane: &Pane,
- state: T,
- ) -> Option<Pane> {
- self.split(Axis::Horizontal, pane, state)
- }
-
pub fn split(&mut self, axis: Axis, pane: &Pane, state: T) -> Option<Pane> {
let node = self.internal.layout.find(pane)?;