Radish alpha
r
Radicle terminal user interface
Radicle
Git (anonymous pull)
Log in to clone via SSH
bin: Adjust to state mutability on tick
Erik Kundt committed 1 year ago
commit 80d5bbac532d49b9ffb42624ad57308362fae4bb
parent f51a671cc5cb06147f173fc6e4e3e3c6deaf1c62
3 files changed +3 -3
modified bin/commands/inbox/select.rs
@@ -221,7 +221,7 @@ pub enum Message {
impl store::State<Selection> for State {
    type Message = Message;

-
    fn tick(&self) {}
+
    fn tick(&mut self) {}

    fn update(&mut self, message: Message) -> Option<Exit<Selection>> {
        match message {
modified bin/commands/issue/select.rs
@@ -199,7 +199,7 @@ impl store::State<Selection> for State {
        }
    }

-
    fn tick(&self) {}
+
    fn tick(&mut self) {}
}

impl App {
modified bin/commands/patch/select.rs
@@ -197,7 +197,7 @@ impl store::State<Selection> for State {
        }
    }

-
    fn tick(&self) {}
+
    fn tick(&mut self) {}
}

impl App {