| 658 | } |
| 659 | |
| 660 | void OnBrowserDiscardButton(wxCommandEvent&) override |
| 661 | { |
| 662 | QueueJob( |
| 663 | [this]() |
| 664 | { |
| 665 | _filesystem->discardChanges(); |
| 666 | |
| 667 | runOnUiThread( |
| 668 | [&]() |
| 669 | { |
| 670 | RepopulateBrowser(); |
| 671 | }); |
| 672 | }); |
| 673 | } |
| 674 | |
| 675 | void OnBrowserSelectionChanged(wxDataViewEvent& event) override |
| 676 | { |
nothing calls this directly
no test coverage detected