Skip to content
Snippets Groups Projects
Commit f0a01bc1 authored by jhrdinka's avatar jhrdinka Committed by Robert Langenberg
Browse files

Correct comparison-operator in wrapInsertAttach() in CylinderVolumeBuilder

parent c015b066
Branches release-0.05.02
Tags v0.05.02
No related merge requests found
...@@ -300,7 +300,7 @@ public: ...@@ -300,7 +300,7 @@ public:
wCondition = Attaching; wCondition = Attaching;
wConditionScreen = "[n attched]"; wConditionScreen = "[n attched]";
} }
if (pVolumeConfig && pVolumeConfig.zMin < existingVolumeConfig.zMax) { if (pVolumeConfig && pVolumeConfig.zMin > existingVolumeConfig.zMax) {
pVolumeConfig.attachZ(existingVolumeConfig); pVolumeConfig.attachZ(existingVolumeConfig);
// will attach the new volume(s) // will attach the new volume(s)
wCondition = Attaching; wCondition = Attaching;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment