diff --git a/Main.tscn b/Main.tscn index cace2a2bc..1c93872d7 100644 --- a/Main.tscn +++ b/Main.tscn @@ -1241,7 +1241,7 @@ margin_bottom = 70.0 margin_left = 8.0 margin_top = 8.0 margin_right = 192.0 -margin_bottom = 106.0 +margin_bottom = 33.0 [node name="ImageSize" type="Label" parent="CreateNewImage/VBoxContainer"] margin_right = 184.0 @@ -1452,7 +1452,7 @@ text = "Language:" margin_left = 61.0 margin_right = 142.0 margin_bottom = 21.0 -text = "English" +text = "System Language" items = [ "System Language", null, false, 0, null, "Greek [el]", null, false, 1, null, "English [en]", null, false, 2, null ] selected = 0 @@ -1523,7 +1523,7 @@ script = ExtResource( 42 ) margin_left = 8.0 margin_top = 8.0 margin_right = 276.0 -margin_bottom = 158.0 +margin_bottom = 149.0 [node name="Pixelorama" type="Label" parent="AboutDialog/AboutUI"] margin_right = 268.0 diff --git a/Scripts/Canvas.gd b/Scripts/Canvas.gd index bd9747780..866bacf11 100644 --- a/Scripts/Canvas.gd +++ b/Scripts/Canvas.gd @@ -62,9 +62,12 @@ func camera_zoom() -> void: if zoom_max > Vector2.ONE: Global.camera.zoom_max = zoom_max Global.camera2.zoom_max = zoom_max + Global.camera_preview.zoom_max = zoom_max else: Global.camera.zoom_max = Vector2.ONE Global.camera2.zoom_max = Vector2.ONE + Global.camera_preview.zoom_max = Vector2.ONE + Global.camera.zoom = Vector2(bigger, bigger) * 0.002 Global.camera2.zoom = Vector2(bigger, bigger) * 0.002 Global.camera_preview.zoom = Vector2(bigger, bigger) * 0.007 diff --git a/Translations/#Translations.el.translation b/Translations/#Translations.el.translation index dda423908..405fe0f7f 100644 Binary files a/Translations/#Translations.el.translation and b/Translations/#Translations.el.translation differ diff --git a/Translations/#Translations.en.translation b/Translations/#Translations.en.translation index 9c52c1f54..2ecce2f95 100644 Binary files a/Translations/#Translations.en.translation and b/Translations/#Translations.en.translation differ