File tree Expand file tree Collapse file tree 1 file changed +9
-9
lines changed
uitools/import/Esri/ArcGISRuntime/Toolkit Expand file tree Collapse file tree 1 file changed +9
-9
lines changed Original file line number Diff line number Diff line change @@ -223,22 +223,22 @@ Pane {
223223 visible: true
224224
225225 Button {
226- id: removeAllButton
227- text: " Remove All "
228- Layout .alignment : Qt .AlignLeft
226+ id: selectStartingPointButton
227+ text: controller . isAddingStartingPointEnabled ? " Cancel " : " Add Starting Point "
228+ Layout .alignment : Qt .AlignRight
229229 Layout .maximumWidth : Layout .maximumHeight
230230 padding: 0
231- onClicked: controller .removeAllStartingPoints ()
232- visible: startPointList .count > 0
231+ onClicked: controller .isAddingStartingPointEnabled = ! controller .isAddingStartingPointEnabled
233232 }
234233
235234 Button {
236- id: selectStartingPointButton
237- text: controller . isAddingStartingPointEnabled ? " Cancel " : " Add Starting Point "
238- Layout .alignment : Qt .AlignRight
235+ id: removeAllButton
236+ text: " Remove All "
237+ Layout .alignment : Qt .AlignLeft
239238 Layout .maximumWidth : Layout .maximumHeight
240239 padding: 0
241- onClicked: controller .isAddingStartingPointEnabled = ! controller .isAddingStartingPointEnabled
240+ onClicked: controller .removeAllStartingPoints ()
241+ visible: startPointList .count > 0
242242 }
243243 }
244244
You can’t perform that action at this time.
0 commit comments