Dismiss the splash screen and transition to the dashboard.
(&mut self)
| 1047 | |
| 1048 | /// Dismiss the splash screen and transition to the dashboard. |
| 1049 | pub fn dismiss_splash(&mut self) { |
| 1050 | if self.screen == Screen::Splash { |
| 1051 | self.screen = Screen::Dashboard; |
| 1052 | self.splash_start = None; |
| 1053 | } |
| 1054 | } |
| 1055 | |
| 1056 | pub fn handle_key(&mut self, key: KeyEvent) { |
| 1057 | if key.modifiers.contains(KeyModifiers::CONTROL) && key.code == KeyCode::Char('c') { |
no outgoing calls
no test coverage detected