| 90 | } |
| 91 | |
| 92 | void MainMenuLayout::webBrowser_DefaultKey() { |
| 93 | if(GetLaunchMode() == LaunchMode::Application) { |
| 94 | g_MainApplication->GetWebBrowserLayout()->Reload(); |
| 95 | g_MainApplication->ShowLayout(g_MainApplication->GetWebBrowserLayout()); |
| 96 | } |
| 97 | else { |
| 98 | g_MainApplication->ShowNotification(cfg::Strings.GetString(292)); |
| 99 | } |
| 100 | } |
| 101 | |
| 102 | void MainMenuLayout::account_DefaultKey() { |
| 103 | if(!acc::HasSelectedUser()) { |
nothing calls this directly
no test coverage detected