src/editmodes/magicWandMode.cpp

changeset 1225
ffcbdce88978
parent 1222
34def2630300
child 1253
468a32ae8100
equal deleted inserted replaced
1224:5a31b6d4bf81 1225:ffcbdce88978
61 // Boundary found. If it's an edgeline, add it to the boundaries list, if a 61 // Boundary found. If it's an edgeline, add it to the boundaries list, if a
62 // conditional line, select it. 62 // conditional line, select it.
63 if (candidate->type() == OBJ_CondLine) 63 if (candidate->type() == OBJ_CondLine)
64 m_selection << candidate; 64 m_selection << candidate;
65 else 65 else
66 boundaries.append(std::make_tuple(candidate->vertex(0), candidate->vertex(1))); 66 boundaries.append({candidate->vertex(0), candidate->vertex(1)});
67 67
68 break; 68 break;
69 } 69 }
70 } 70 }
71 } 71 }

mercurial