Mentions légales du service

Skip to content
Snippets Groups Projects
Commit 62d41445 authored by Mathieu Faverge's avatar Mathieu Faverge
Browse files

Silent warning in Interval_selec.cpp

parent 9c870fae
No related branches found
No related tags found
No related merge requests found
......@@ -263,7 +263,9 @@ void Interval_select::maxSliderValueChanged( int _value )
void Interval_select::apply_settings(){
if (! _applied) {
if(minSpinBox->value()!=maxSpinBox->value()){
Element_pos zoom[2]={minSpinBox->value(), maxSpinBox->value()};
Element_pos min = minSpinBox->value();
Element_pos max = maxSpinBox->value();
Element_pos zoom[2] = { min, max };
//Info::Render::_x_min_visible = 0.0;
//Info::Render::_x_max_visible = 0.0;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment