Skip to content

Commit

Permalink
reduced min step size
Browse files Browse the repository at this point in the history
  • Loading branch information
chamberm committed Jul 31, 2015
1 parent 8dabf90 commit cefec8a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/gui/TrackingWindow.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -212,7 +212,7 @@ TrackingWindow::TrackingWindow( wxWindow *pParent, MainFrame *pMf, wxWindowID id
m_pTrackingSizer->Add( pBoxRow6, 0, wxFIXED_MINSIZE | wxEXPAND, 0 );

m_pTextStep = new wxStaticText( this, wxID_ANY, wxT("Step"), wxPoint(0,180), wxSize(70, -1), wxALIGN_CENTER );
m_pSliderStep = new MySlider( this, wxID_ANY, 0, 5, 20, wxPoint(60,180), wxSize(100, -1), wxSL_HORIZONTAL | wxSL_AUTOTICKS );
m_pSliderStep = new MySlider( this, wxID_ANY, 0, 1, 20, wxPoint(60,180), wxSize(100, -1), wxSL_HORIZONTAL | wxSL_AUTOTICKS );
m_pSliderStep->SetValue( 10 );
Connect( m_pSliderStep->GetId(), wxEVT_COMMAND_SLIDER_UPDATED, wxCommandEventHandler(TrackingWindow::OnSliderStepMoved) );
m_pTxtStepBox = new wxTextCtrl( this, wxID_ANY, wxT("1.0 mm"), wxPoint(190,180), wxSize(55, -1), wxTE_CENTRE | wxTE_READONLY );
Expand Down

0 comments on commit cefec8a

Please sign in to comment.