Merge pull request #46564 from pycbouh/graph-edit-hide-minimap-properly-3.2
[3.2] Properly hide GraphEdit's minimap
This commit is contained in:
commit
998ce22ea3
1 changed files with 6 additions and 1 deletions
|
@ -1620,7 +1620,12 @@ bool GraphEdit::is_minimap_enabled() const {
|
|||
}
|
||||
|
||||
void GraphEdit::_minimap_toggled() {
|
||||
minimap->update();
|
||||
if (is_minimap_enabled()) {
|
||||
minimap->set_visible(true);
|
||||
minimap->update();
|
||||
} else {
|
||||
minimap->set_visible(false);
|
||||
}
|
||||
}
|
||||
|
||||
HBoxContainer *GraphEdit::get_zoom_hbox() {
|
||||
|
|
Loading…
Reference in a new issue