1
1
mirror of https://github.com/wez/wezterm.git synced 2024-11-12 21:30:45 +03:00

wezterm-client: fix incorrect type

s/TabId/PaneId/
This commit is contained in:
Wez Furlong 2021-12-11 21:45:31 -07:00
parent 88688e32c7
commit 21170445b7

View File

@ -159,7 +159,7 @@ impl ClientPane {
#[async_trait(?Send)]
impl Pane for ClientPane {
fn pane_id(&self) -> TabId {
fn pane_id(&self) -> PaneId {
self.local_pane_id
}