mirror of
https://github.com/ra3xdh/qucs_s
synced 2025-03-28 21:13:26 +00:00
Set the minimum step in the QSpinBoxes to 1/10 of the div unit
This is settings allows the changes on the graph to be more dynamic
This commit is contained in:
parent
758a502f27
commit
b8b271a0b0
@ -2095,6 +2095,11 @@ void Qucs_S_SPAR_Viewer::adjust_x_axis_div()
|
||||
disconnect(QComboBox_x_axis_div, SIGNAL(currentIndexChanged(int)), this, SLOT(updatePlot()));
|
||||
QComboBox_x_axis_div->setCurrentIndex(new_index);
|
||||
connect(QComboBox_x_axis_div, SIGNAL(currentIndexChanged(int)), SLOT(updatePlot()));
|
||||
|
||||
//Update the step of the spinboxes
|
||||
double step = QComboBox_x_axis_div->currentText().toDouble()/10;
|
||||
QSpinBox_x_axis_min->setSingleStep(step);
|
||||
QSpinBox_x_axis_max->setSingleStep(step);
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user