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.
1 parent 633281f commit bbe0a1fCopy full SHA for bbe0a1f
src/resources/qml/bulk-operations/BulkOperationsDialog.qml
@@ -13,16 +13,17 @@ Dialog {
13
standardButtons: StandardButton.NoButton
14
15
function loadKeys() {
16
- bulkOperations.getAffectedKeys()
17
uiBlocker.visible = true
18
-
+ bulkOperations.getAffectedKeys()
19
}
20
21
onVisibleChanged: {
22
if (visible == false) {
23
bulkOperations.clearOperation();
24
} else {
25
- bulkOperations.getAffectedKeys();
+ if (!uiBlocker.visible) {
+ loadKeys();
26
+ }
27
28
29
@@ -173,6 +174,7 @@ Dialog {
173
174
target: bulkOperations
175
176
onAffectedKeys: {
177
+ console.log("Affected keys loaded")
178
affectedKeysListView.model = r
179
uiBlocker.visible = false
180
0 commit comments