diff options
author | Rémi Verschelde <remi@verschelde.fr> | 2021-11-22 16:22:57 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-11-22 16:22:57 +0100 |
commit | 76aa1d0a433441e9bd863e1f489e9905c545f630 (patch) | |
tree | a5b299f1bd5bbeee6bf717ae5a02f28977f04af5 /editor/plugins/curve_editor_plugin.cpp | |
parent | 8daf0cc49c4bab8dd039ced214e527b21708661e (diff) | |
parent | eabf8f5edf6dc3346bd6a6e771e382f1a20a5c29 (diff) | |
download | redot-engine-76aa1d0a433441e9bd863e1f489e9905c545f630.tar.gz |
Merge pull request #55151 from Chaosus/control_reset_size
Diffstat (limited to 'editor/plugins/curve_editor_plugin.cpp')
-rw-r--r-- | editor/plugins/curve_editor_plugin.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/editor/plugins/curve_editor_plugin.cpp b/editor/plugins/curve_editor_plugin.cpp index 005cf27e8a..daf34903e6 100644 --- a/editor/plugins/curve_editor_plugin.cpp +++ b/editor/plugins/curve_editor_plugin.cpp @@ -383,7 +383,7 @@ void CurveEditor::open_context_menu(Vector2 pos) { _context_menu->add_submenu_item(TTR("Load Preset"), _presets_menu->get_name()); - _context_menu->set_size(Size2(0, 0)); + _context_menu->reset_size(); _context_menu->popup(); } |