MCPcopy Create free account
hub / github.com/TechJeeper/Printventory / dequeueNextRenderTask

Function dequeueNextRenderTask

renderer.js:839–852  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

837window._electronRealEventHandlers['start-single-tag-generation'] = function(filePath, modelData) {
838 var dialog = document.getElementById('tag-preview-dialog');
839 if (dialog && !dialog.open) {
840 dialog.showModal();
841 var container = document.getElementById('tag-preview-container');
842 if (container) container.innerHTML = '<div style="padding: 20px; color: #fff;">Generating tags...</div>';
843 }
844};
845window._electronRealEventHandlers['start-batch-tag-generation'] = function(count, filePaths) {
846 var dialog = document.getElementById('tag-preview-dialog');
847 if (dialog && !dialog.open) {
848 dialog.showModal();
849 var container = document.getElementById('tag-preview-container');
850 if (container) container.innerHTML = '<div style="padding: 20px; color: #fff;">Generating tags for ' + (count || 0) + ' model(s)...</div>';
851 }
852};
853
854// Add debug logging utility function
855function debugLog(...args) {

Callers 1

processRenderQueueFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected