MCPcopy Create free account
hub / github.com/NVIDIA/OpenShell / dismiss_splash

Method dismiss_splash

crates/openshell-tui/src/app.rs:1049–1054  ·  view source on GitHub ↗

Dismiss the splash screen and transition to the dashboard.

(&mut self)

Source from the content-addressed store, hash-verified

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') {

Callers 2

runFunction · 0.80
handle_keyMethod · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected