1
0
Fork 0

Properly hide GraphEdit's minimap

This commit is contained in:
Yuri Sizov 2021-03-01 18:18:05 +03:00
parent f4df2cdeef
commit 59dfd084ab
1 changed files with 6 additions and 1 deletions

View File

@ -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() {