()
| 136 | figma.showUI(__html__, { width: 450, height: 700, themeColors: true }); |
| 137 | let initialized = false; |
| 138 | const initializeOnce = async () => { |
| 139 | if (initialized) { |
| 140 | return; |
| 141 | } |
| 142 | initialized = true; |
| 143 | await initSettings(); |
| 144 | }; |
| 145 | |
| 146 | // Listen for selection changes |
| 147 | figma.on("selectionchange", () => { |
no test coverage detected