(folderPath, view)
| 663 | window._electronRealEventHandlers['start-batch-tag-generation'] = function(count, filePaths) { |
| 664 | var dialog = document.getElementById('tag-preview-dialog'); |
| 665 | if (dialog && !dialog.open) { |
| 666 | dialog.showModal(); |
| 667 | var container = document.getElementById('tag-preview-container'); |
| 668 | if (container) container.innerHTML = '<div style="padding: 20px; color: #fff;">Generating tags for ' + (count || 0) + ' model(s)...</div>'; |
| 669 | } |
| 670 | }; |
| 671 | |
| 672 | // Add debug logging utility function |
| 673 | function debugLog(...args) { |
| 674 | if (DEBUG) { |
nothing calls this directly
no test coverage detected