Skip to content

Commit

Permalink
Add missing | in file picker filters
Browse files Browse the repository at this point in the history
  • Loading branch information
Solokiller committed Jul 11, 2019
1 parent 0a897b1 commit 3001bd6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/tools/hlmv/ui/options/CCompilerOptions.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -22,14 +22,14 @@ CCompilerOptions::CCompilerOptions( wxWindow* pParent, CHLMVSettings* const pSet

m_pStudioMdl = new wxFilePickerCtrl( this, wxID_ANY, wxEmptyString, wxFileSelectorPromptStr,
"Executables (*.exe;*.com)|*.exe;*.com"
"All files (*.*)|*.*",
"|All files (*.*)|*.*",
wxDefaultPosition, wxDefaultSize, wxFLP_DEFAULT_STYLE | wxFLP_USE_TEXTCTRL | wxFLP_SMALL );

auto pMdlDecText = new wxStaticText( this, wxID_ANY, "Path to \'mdldec.exe\'" );

m_pMdlDec = new wxFilePickerCtrl( this, wxID_ANY, wxEmptyString, wxFileSelectorPromptStr,
"Executables (*.exe;*.com)|*.exe;*.com"
"All files (*.*)|*.*",
"|All files (*.*)|*.*",
wxDefaultPosition, wxDefaultSize, wxFLP_DEFAULT_STYLE | wxFLP_USE_TEXTCTRL | wxFLP_SMALL );

auto pMDLOutputDirText = new wxStaticText( this, wxID_ANY, "Default destination directory for command line output files" );
Expand Down

0 comments on commit 3001bd6

Please sign in to comment.