Skip to content

Commit

Permalink
3822: Remove legacy comments
Browse files Browse the repository at this point in the history
  • Loading branch information
kduske committed Nov 13, 2021
1 parent f68cae4 commit d748dac
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions common/src/View/UVEditor.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -90,11 +90,11 @@ namespace TrenchBroom {

auto* gridLabel = new QLabel("Grid ");
makeEmphasized(gridLabel);
m_xSubDivisionEditor = new QSpinBox(); //(this, wxID_ANY, "1", wxDefaultPosition, wxDefaultSize, wxSP_ARROW_KEYS | wxTE_PROCESS_ENTER | wxALIGN_RIGHT);
m_xSubDivisionEditor = new QSpinBox();
m_xSubDivisionEditor->setRange(1, 16);
m_xSubDivisionEditor->setValue(1);

m_ySubDivisionEditor = new QSpinBox(); //(this, wxID_ANY, "1", wxDefaultPosition, wxDefaultSize, wxSP_ARROW_KEYS | wxTE_PROCESS_ENTER | wxALIGN_RIGHT);
m_ySubDivisionEditor = new QSpinBox();
m_ySubDivisionEditor->setRange(1, 16);
m_ySubDivisionEditor->setValue(1);

Expand Down

0 comments on commit d748dac

Please sign in to comment.