diff --git a/src/ui.rs b/src/ui.rs index e37c8a2..de36db5 100644 --- a/src/ui.rs +++ b/src/ui.rs @@ -604,12 +604,7 @@ impl UI { } } // F5 = refresh - Action::Keypress(Key::F(5)) => { - if let Some(view) = self.views.get(self.focused) { - let current_url = view.url().to_owned(); - self.open(¤t_url, ¤t_url)? - } - } + Action::Keypress(Key::F(5)) => self.dirty = true, Action::Keypress(Key::Left) | Action::Keypress(Key::Backspace) => { if self.focused > 0 { self.dirty = true;