1
0
mirror of https://bitbucket.org/librepilot/librepilot.git synced 2024-11-29 07:24:13 +01:00

LP-561 pfd gadget: fix regression that prevented cloning of units

This commit is contained in:
Philippe Renon 2017-12-10 16:01:39 +01:00
parent 213893e298
commit ab005828a1

View File

@ -82,6 +82,9 @@ PfdQmlGadgetConfiguration::PfdQmlGadgetConfiguration(QString classId, QSettings
PfdQmlGadgetConfiguration::PfdQmlGadgetConfiguration(const PfdQmlGadgetConfiguration &obj) :
IUAVGadgetConfiguration(obj.classId(), obj.parent())
{
m_speedMap = obj.m_speedMap;
m_altitudeMap = obj.m_altitudeMap;
m_qmlFile = obj.m_qmlFile;
m_speedFactor = obj.m_speedFactor;