From cb3aa18160d697a2545ee29ff162cd4e24b3c10c Mon Sep 17 00:00:00 2001 From: Robot Samurai Date: Thu, 1 Dec 2022 17:18:41 -0500 Subject: [PATCH] Update 0000-shared-widget-state.md --- text/0000-shared-widget-state.md | 13 +------------ 1 file changed, 1 insertion(+), 12 deletions(-) diff --git a/text/0000-shared-widget-state.md b/text/0000-shared-widget-state.md index 3f00d87..88c68b1 100644 --- a/text/0000-shared-widget-state.md +++ b/text/0000-shared-widget-state.md @@ -355,22 +355,11 @@ impl Focusable for State { widget::store::focus::is_focused(&self.id) } + /// Maybe we want to navigate on our own terms. pub fn focus_next() -> Message { widget::store::focus::focus_next() } - pub fn focus_prev() -> Message { - widget::store::focus::focus_prev() - } - - pub fn focus_up() -> Message { - widget::store::focus::focus_up() - } - - pub fn focus_down() -> Message { - widget::store::focus::focus_down() - } - /// Set the `Id` stored in this state as the focused one. pub fn focus(&mut self) { widget::store::focus::focus(&self.id);