Skip to content

Commit

Permalink
Make entry boxes less wide
Browse files Browse the repository at this point in the history
  • Loading branch information
Blake-Madden committed Sep 14, 2024
1 parent 1e62cc1 commit 626057d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/gui/projectdlg.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -293,7 +293,7 @@ void NewProjectDialog::CreateControls()

wxTextCtrl* filePathEdit = new wxTextCtrl(
fileBrowseBoxSizer->GetStaticBox(), wxID_ANY, wxString{}, wxDefaultPosition,
wxSize{ FromDIP(500), -1 }, wxTE_RICH2 | wxBORDER_THEME | wxTE_BESTWRAP,
wxSize{ FromDIP(400), -1 }, wxTE_RICH2 | wxBORDER_THEME | wxTE_BESTWRAP,
wxGenericValidator(&m_filePath));
filePathEdit->AutoCompleteFileNames();
filePathEdit->AutoCompleteDirectories();
Expand All @@ -316,7 +316,7 @@ void NewProjectDialog::CreateControls()

wxTextCtrl* filePathEdit =
new wxTextCtrl(fileBrowseBoxSizer->GetStaticBox(), wxID_ANY, wxString{},
wxDefaultPosition, wxSize{ FromDIP(500), FromDIP(60) },
wxDefaultPosition, wxSize{ FromDIP(400), FromDIP(60) },
wxTE_RICH2 | wxTE_MULTILINE | wxBORDER_THEME | wxTE_BESTWRAP,
wxGenericValidator(&m_excludedPaths));
filePathEdit->AutoCompleteFileNames();
Expand Down

0 comments on commit 626057d

Please sign in to comment.