1
0
mirror of https://github.com/godotengine/godot.git synced 2025-11-06 12:20:30 +00:00

Fix zoom label not being updated

This commit is contained in:
LoipesMas
2021-08-25 18:53:40 +02:00
parent d5a30431b9
commit f3883ea59e

View File

@@ -4190,6 +4190,7 @@ void CanvasItemEditor::_zoom_on_position(real_t p_zoom, Point2 p_position) {
p_zoom = CLAMP(p_zoom, MIN_ZOOM, MAX_ZOOM);
if (p_zoom == zoom) {
zoom_widget->set_zoom(p_zoom);
return;
}