1
0
mirror of https://github.com/f4exb/sdrangel.git synced 2024-09-27 15:26:33 -04:00

Fix restoring of Heat Map UI settings

This commit is contained in:
Jon Beniston 2023-05-15 16:44:39 +01:00
parent 0d9d57f3c3
commit 60c4fe1ee6

View File

@ -107,9 +107,9 @@ QByteArray HeatMapSettings::serialize() const
s.writeBlob(30, m_rollupState->serialize());
}
s.writeS32(32, m_workspaceIndex);
s.writeBlob(33, m_geometryBytes);
s.writeBool(34, m_hidden);
s.writeS32(31, m_workspaceIndex);
s.writeBlob(32, m_geometryBytes);
s.writeBool(33, m_hidden);
return s.final();
}