Skip to content

Commit

Permalink
Merge pull request seandepagnier#208 from theeko74/fix-sm4
Browse files Browse the repository at this point in the history
FIX default safety margin to 0NM (instead of 2NM)
  • Loading branch information
seandepagnier committed Jun 11, 2018
2 parents 536da9d + c49eb0c commit 2a31941
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion WeatherRouting.fbp
Original file line number Diff line number Diff line change
Expand Up @@ -10066,7 +10066,7 @@
<property name="gripper">0</property>
<property name="hidden">0</property>
<property name="id">wxID_ANY</property>
<property name="initial">2</property>
<property name="initial">0</property>
<property name="max">100</property>
<property name="max_size"></property>
<property name="maximize_button">0</property>
Expand Down
2 changes: 1 addition & 1 deletion src/WeatherRoutingUI.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1051,7 +1051,7 @@ ConfigurationDialogBase::ConfigurationDialogBase( wxWindow* parent, wxWindowID i
m_staticText241->Wrap( -1 );
fgSizer11511->Add( m_staticText241, 0, wxALIGN_CENTER_VERTICAL|wxALL, 5 );

m_sSafetyMarginLand = new wxSpinCtrl( sbSizer29->GetStaticBox(), wxID_ANY, wxEmptyString, wxDefaultPosition, wxSize( 60,-1 ), wxSP_ARROW_KEYS, 0, 100, 2 );
m_sSafetyMarginLand = new wxSpinCtrl( sbSizer29->GetStaticBox(), wxID_ANY, wxEmptyString, wxDefaultPosition, wxSize( 60,-1 ), wxSP_ARROW_KEYS, 0, 100, 0 );
fgSizer11511->Add( m_sSafetyMarginLand, 0, wxALL, 5 );

m_staticText1211 = new wxStaticText( sbSizer29->GetStaticBox(), wxID_ANY, _("NM"), wxDefaultPosition, wxDefaultSize, 0 );
Expand Down

0 comments on commit 2a31941

Please sign in to comment.