https://bugs.kde.org/show_bug.cgi?id=460263
--- Comment #2 from Hans Lambermont <h...@lambermont.dyndns.org> --- Yes the driver is right, that is not the problem. Have a look at the PNG attachment to this bug ticket, that shows the problem is in the GUI. It has a hardcoded maximum of 100000. In EKOS focus.ui , look at line 1629 : ``` focus.ui 1612 <widget class="QDoubleSpinBox" name="focusMaxTravel"> 1613 <property name="sizePolicy"> 1614 <sizepolicy hsizetype="Preferred" vsizetype="Preferred"> 1615 <horstretch>0</horstretch> 1616 <verstretch>0</verstretch> 1617 </sizepolicy> 1618 </property> 1619 <property name="toolTip"> 1620 <string><html><head/><body><p>Maximum travel in steps before the autofocus process aborts</p></body>&l t;/html></string> 1621 </property> 1622 <property name="decimals"> 1623 <number>0</number> 1624 </property> 1625 <property name="minimum"> 1626 <double>10.000000000000000</double> 1627 </property> 1628 <property name="maximum"> 1629 <double>100000.000000000000000</double> 1630 </property> ``` -- You are receiving this mail because: You are watching all bug changes.