浏览代码

Call minimum_size_changed() in PopupMenu::remove_item()

When removing an item from a PopupMenu we need to update the control's
size cache otherwise the size of the PopupMenu itself lags behind by 1
item size. Meaning the PopupMenu will remain too large.
Hein-Pieter van Braam 7 年之前
父节点
当前提交
2d032c1562
共有 1 个文件被更改,包括 1 次插入0 次删除
  1. 1 0
      scene/gui/popup_menu.cpp

+ 1 - 0
scene/gui/popup_menu.cpp

@@ -1099,6 +1099,7 @@ void PopupMenu::remove_item(int p_idx) {
 
 	items.remove(p_idx);
 	update();
+	minimum_size_changed();
 }
 
 void PopupMenu::add_separator(const String &p_text) {