We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 7eb9f82 + 80ebdb1 commit ef4044cCopy full SHA for ef4044c
Import/Esri/ArcGISRuntime/Toolkit/Controls/PopupStackView.qml
@@ -191,9 +191,13 @@ Item {
191
\brief Show the PopupStackView.
192
*/
193
function show() {
194
+ if (popupStack.busy)
195
+ return;
196
+
197
currentIndex = 0;
198
if (popupManagers !== null && popupManagers.length > 0) {
- popup1.popupManagerInternal = popupManagers[currentIndex]
199
+ swapPopups(popupStack.currentItem === popup1 ? popup1 : popup2,
200
+ popupStack.currentItem === popup1 ? popup2 : popup1);
201
}
202
visible = true;
203
0 commit comments