Changing tabs no longer triggers a bake

This commit is contained in:
n1474335 2023-02-24 17:34:35 +00:00
parent 251bd86ce5
commit cdde7166cf
2 changed files with 7 additions and 3 deletions

View file

@ -966,6 +966,7 @@ class OutputWaiter {
*/
changeTabClick(mouseEvent) {
if (!mouseEvent.target) return;
const tabNum = mouseEvent.target.parentElement.getAttribute("inputNum");
if (tabNum) {
this.changeTab(parseInt(tabNum, 10), this.app.options.syncTabs);