This commit is contained in:
yumoqing 2025-12-29 14:38:55 +08:00
parent f9184da720
commit a0c1613d48

View File

@ -122,6 +122,7 @@ bricks.Menu = class extends bricks.VScrollPanel {
var name = x.shift() var name = x.shift()
var container = w.container; var container = w.container;
var fc; var fc;
if (! container) return null;
containers.children.forEach(c=>{ containers.children.forEach(c=>{
if (c.user_data){ if (c.user_data){
if (c.user_data.name == name) fc = c; if (c.user_data.name == name) fc = c;
@ -139,12 +140,12 @@ bricks.Menu = class extends bricks.VScrollPanel {
hide_item(menu_path, event){ hide_item(menu_path, event){
var w = this.get_container(this, mpath); var w = this.get_container(this, mpath);
w.hide(); if (w) w.hide();
event.stopPropagation(); event.stopPropagation();
} }
show_item(menu_path, event){ show_item(menu_path, event){
var w = this.get_container(this, mpath); var w = this.get_container(this, mpath);
w.show(); if (w) w.show();
event.stopPropagation(); event.stopPropagation();
} }
items_toggle_hide(w, event){ items_toggle_hide(w, event){