Hide subflow category after deleting subflow

This commit is contained in:
Kazuhito Yokoi 2022-12-08 23:43:47 +09:00
parent 113d42ef35
commit 805f8a5ee7
1 changed files with 2 additions and 0 deletions

View File

@ -432,6 +432,7 @@ RED.palette = (function() {
categoryNode.find(".red-ui-palette-content").slideToggle();
categoryNode.find("i").toggleClass("expanded");
}
categoryNode.hide();
}
}
@ -510,6 +511,7 @@ RED.palette = (function() {
currentCategoryNode.find(".red-ui-palette-content").slideToggle();
currentCategoryNode.find("i").toggleClass("expanded");
}
currentCategoryNode.hide();
}
}