Fix for issue #4960, which only affects Windows
| 258 | |
| 259 | // Fix for issue #4960, which only affects Windows |
| 260 | bool ExportAudioDialog::Show(bool show) |
| 261 | { |
| 262 | bool ret = wxDialogWrapper::Show(show); |
| 263 | |
| 264 | #if defined(__WXMSW__) |
| 265 | if (show) |
| 266 | mExportOptionsPanel->SetInitialFocus(); |
| 267 | #endif |
| 268 | |
| 269 | return ret; |
| 270 | } |
| 271 | |
| 272 | void ExportAudioDialog::PopulateOrExchange(ShuttleGui& S) |
| 273 | { |
no test coverage detected