Skip to content

Commit

Permalink
Add spacing around Report Frequency textbox.
Browse files Browse the repository at this point in the history
  • Loading branch information
tmiw committed Nov 17, 2023
1 parent 8a7dd73 commit 7c9febe
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/topFrame.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -763,7 +763,7 @@ TopFrame::TopFrame(wxWindow* parent, wxWindowID id, const wxString& title, const

m_cboReportFrequency = new wxComboBox(m_freqBox, wxID_ANY, wxEmptyString, wxDefaultPosition, wxDefaultSize, 0, NULL, wxCB_DROPDOWN | wxTE_PROCESS_ENTER);
m_cboReportFrequency->SetMinSize(wxSize(150,-1));
txtReportFreqSizer->Add(m_cboReportFrequency, 1, 0, 1);
txtReportFreqSizer->Add(m_cboReportFrequency, 1, wxALL, 5);

reportFrequencySizer->Add(txtReportFreqSizer, 1, wxEXPAND, 1);
reportFrequencySizer->Add(reportFrequencyUnits, 0, wxALIGN_CENTER_VERTICAL, 1);
Expand Down

0 comments on commit 7c9febe

Please sign in to comment.