Skip to content
Snippets Groups Projects
Commit c4af98c2 authored by Mikhail Svechnikov's avatar Mikhail Svechnikov
Browse files

read log scale

parent fadaf80f
No related branches found
No related tags found
1 merge request!2763Fix axes and add hide mask-related actions from sim/job
...@@ -57,6 +57,8 @@ void AmplitudeAxisItem::readFrom(QXmlStreamReader* r) ...@@ -57,6 +57,8 @@ void AmplitudeAxisItem::readFrom(QXmlStreamReader* r)
XML::readBaseElement<BasicAxisItem>(r, tag, this); XML::readBaseElement<BasicAxisItem>(r, tag, this);
else if (tag == Tag::LockMinMax) else if (tag == Tag::LockMinMax)
m_lock_min_max = XML::readTaggedBool(r, tag); m_lock_min_max = XML::readTaggedBool(r, tag);
else if (tag == Tag::LogScale)
m_log_scale = XML::readTaggedBool(r, tag);
else if (tag == Tag::LogRangeOrders) else if (tag == Tag::LogRangeOrders)
m_log_range_orders = XML::readTaggedDouble(r, tag); m_log_range_orders = XML::readTaggedDouble(r, tag);
else if (tag == Tag::IsVisible) else if (tag == Tag::IsVisible)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment