summaryrefslogtreecommitdiffstats
path: root/zellij-server/src/ui
diff options
context:
space:
mode:
authorKunal Mohan <kunalmohan99@gmail.com>2021-05-16 22:25:32 +0530
committerKunal Mohan <kunalmohan99@gmail.com>2021-05-16 22:25:32 +0530
commita872362328e89d1a2cb43642751486a52aed124c (patch)
treed5beba48fdb4369256d92b6437ee015c262e8bf0 /zellij-server/src/ui
parent62d0901bbdbb4389e88e4a55836b167d19671515 (diff)
fmt and clippy
Diffstat (limited to 'zellij-server/src/ui')
-rw-r--r--zellij-server/src/ui/pane_resizer.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/zellij-server/src/ui/pane_resizer.rs b/zellij-server/src/ui/pane_resizer.rs
index 9f8b4d04c..b2001945e 100644
--- a/zellij-server/src/ui/pane_resizer.rs
+++ b/zellij-server/src/ui/pane_resizer.rs
@@ -1,9 +1,9 @@
-use crate::{panes::PaneId, os_input_output::ServerOsApi, tab::Pane};
+use crate::{os_input_output::ServerOsApi, panes::PaneId, tab::Pane};
use std::{
cmp::Ordering,
collections::{BTreeMap, HashSet},
};
-use zellij_utils::{pane_size::PositionAndSize};
+use zellij_utils::pane_size::PositionAndSize;
pub(crate) struct PaneResizer<'a> {
panes: &'a mut BTreeMap<PaneId, Box<dyn Pane>>,