1
1
mirror of https://github.com/wez/wezterm.git synced 2024-09-20 19:27:22 +03:00

rename clienttab.rs -> clientpane.rs

This better reflects the renaming of the struct that took place
a long time ago.
This commit is contained in:
Wez Furlong 2021-05-30 07:10:38 -07:00
parent a652896418
commit 564b4563b3
3 changed files with 3 additions and 3 deletions

View File

@ -1,5 +1,5 @@
pub use clienttab::ClientPane;
pub use clientpane::ClientPane;
mod clienttab;
mod clientpane;
mod mousestate;
mod renderable;

View File

@ -1,5 +1,5 @@
use crate::domain::ClientInner;
use crate::pane::clienttab::ClientPane;
use crate::pane::clientpane::ClientPane;
use anyhow::anyhow;
use codec::*;
use config::{configuration, ConfigHandle};