AnalogSignal: Fix storing of autoranging setting

This commit is contained in:
Ramon Felder 2022-09-05 18:23:03 +02:00 committed by Soeren Apel
parent 56e547f7af
commit d570226007
1 changed files with 1 additions and 1 deletions

View File

@ -139,7 +139,7 @@ std::map<QString, QVariant> AnalogSignal::save_settings() const
result["neg_vdivs"] = neg_vdivs_;
result["scale_index"] = scale_index_;
result["display_type"] = display_type_;
result["autoranging"] = pos_vdivs_;
result["autoranging"] = autoranging_;
result["div_height"] = div_height_;
return result;