mirror of
https://github.com/ra3xdh/qucs_s
synced 2025-03-28 21:13:26 +00:00
Fix auto-adjust x-axis
This commit is contained in:
parent
1317db595c
commit
9b67b2ef45
@ -2067,7 +2067,7 @@ void Qucs_S_SPAR_Viewer::adjust_x_axis_div()
|
||||
double x_max = QSpinBox_x_axis_max->value();
|
||||
double x_div = QComboBox_x_axis_div->currentText().toDouble();
|
||||
|
||||
if ((x_div > x_max-x_min) || ((x_max-x_min)/x_div > 15)){
|
||||
if ((x_div > x_max-x_min) || ((x_max-x_min)/x_div > 15) || ((x_max-x_min)/x_div < 5) ){
|
||||
// No ticks or excesive ticks
|
||||
int new_index = findClosestIndex(available_x_axis_div, (x_max-x_min)/5);
|
||||
disconnect(QComboBox_x_axis_div, SIGNAL(currentIndexChanged(int)), this, SLOT(updatePlot()));
|
||||
|
Loading…
x
Reference in New Issue
Block a user