We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 867c0b2 commit 7dc559eCopy full SHA for 7dc559e
src/gui/MyDialogNewConnection.cpp
@@ -94,7 +94,12 @@ void MyDialogNewConnection::OnPasswordPrivkeyRadioSelected(wxCommandEvent &event
94
}
95
96
void MyDialogNewConnection::OnPrivkeyFileOpen(wxCommandEvent &event) {
97
- wxString filename = wxFileSelector("Choose an SSH private key file");
+ wxString filename = wxFileSelector("Choose an SSH private key file",
98
+ wxEmptyString,
99
100
101
+ wxFileSelectorDefaultWildcardStr,
102
+ wxFD_SHOW_HIDDEN);
103
104
if (!filename.empty()) {
105
wxBusyCursor busy;
0 commit comments