Radish alpha
r
Radicle terminal user interface
Radicle
Git (anonymous pull)
Log in to clone via SSH
bin: Adjust to renamed rmUI / imUI modules
Erik Kundt committed 1 year ago
commit 30788cf7988dce8a3eddd51b1c71f703fd9c9e19
parent 4b48599019639d4123276a479adb6f8a9bc30236
3 files changed +4 -4
modified bin/commands/inbox/select.rs
@@ -293,7 +293,7 @@ impl App {
                    .into()
            });

-
        tui::run(channel, state, window).await
+
        tui::rm(channel, state, window).await
    }
}

modified bin/commands/issue/select.rs
@@ -368,7 +368,7 @@ impl App {
                    .into()
            });

-
        tui::run(channel, state, window).await
+
        tui::rm(channel, state, window).await
    }
}

modified bin/commands/patch/select.rs
@@ -62,7 +62,7 @@ impl App {
            let tx = channel.tx.clone();
            let state = imui::State::try_from(&self.context)?;

-
            tui::run_im(channel, state, imui::App::new(tx)).await
+
            tui::im(channel, state, imui::App::new(tx)).await
        } else {
            let channel = Channel::default();
            let tx = channel.tx.clone();
@@ -78,7 +78,7 @@ impl App {
                        .into()
                });

-
            tui::run(channel, state, window).await
+
            tui::rm(channel, state, window).await
        }
    }
}