Skip to content

Commit

Permalink
Serialize tutorial plugin
Browse files Browse the repository at this point in the history
  • Loading branch information
ThomasKroes committed Dec 12, 2024
1 parent ec53179 commit 2e0e59b
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions ManiVault/src/plugins/TutorialPlugin/src/TutorialPlugin.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -85,16 +85,14 @@ void TutorialPlugin::fromVariantMap(const QVariantMap& variantMap)
{
ViewPlugin::fromVariantMap(variantMap);

//_sourcePluginPickerAction.fromParentVariantMap(variantMap);
//_freezeViewAction.fromParentVariantMap(variantMap);
_tutorialPickerAction.fromParentVariantMap(variantMap);
}

QVariantMap TutorialPlugin::toVariantMap() const
{
auto variantMap = ViewPlugin::toVariantMap();

//_sourcePluginPickerAction.insertIntoVariantMap(variantMap);
//_freezeViewAction.insertIntoVariantMap(variantMap);
_tutorialPickerAction.insertIntoVariantMap(variantMap);

return variantMap;
}
Expand Down

0 comments on commit 2e0e59b

Please sign in to comment.