diff --git a/Scripts/Dialogs/AboutDialog.gd b/Scripts/Dialogs/AboutDialog.gd index 229c3fd9e..842849051 100644 --- a/Scripts/Dialogs/AboutDialog.gd +++ b/Scripts/Dialogs/AboutDialog.gd @@ -21,11 +21,12 @@ func _ready() -> void: contributors.create_item(contributor_root).set_text(0, " Martin Zabinski") contributors.create_item(contributor_root).set_text(0, " azagaya") contributors.create_item(contributor_root).set_text(0, " Andreev Andrei") + contributors.create_item(contributor_root).set_text(0, " Martin Novák (novhack)") contributors.create_item(contributor_root).set_text(0, " Marco Galli (Gaarco)") contributors.create_item(contributor_root).set_text(0, " Subhang Nanduri (SbNanduri)") contributors.create_item(contributor_root).set_text(0, " danielnaoexiste") contributors.create_item(contributor_root).set_text(0, " Noah Burck (haonkrub)") - contributors.create_item(contributor_root).set_text(0, " Martin Novák (novhack)") + contributors.create_item(contributor_root).set_text(0, " luiq54") var donors_root := donors.create_item() donors.create_item(donors_root).set_text(0, " pcmxms") diff --git a/Scripts/Dialogs/CreateNewImage.gd b/Scripts/Dialogs/CreateNewImage.gd index fbf8beae7..083496a3a 100644 --- a/Scripts/Dialogs/CreateNewImage.gd +++ b/Scripts/Dialogs/CreateNewImage.gd @@ -25,7 +25,7 @@ enum TValues { func _ready() -> void: ratio_box.connect("pressed", self, "_on_RatioCheckBox_toggled", [ratio_box.pressed]) templates_options.connect("item_selected", self, "_on_TemplatesOptions_item_selected") - + func _on_CreateNewImage_confirmed() -> void: var width : int = width_value.value var height : int = height_value.value @@ -55,7 +55,7 @@ func _on_CreateNewImage_about_to_show() -> void: height_value.value = Global.default_image_height fill_color_node.color = Global.default_fill_color templates_options.selected = Templates.TDefault - ratio_box.pressed = false + ratio_box.pressed = false for spin_box in [width_value, height_value]: if spin_box.is_connected("value_changed", self, "_on_SizeValue_value_changed"): spin_box.disconnect("value_changed", self, "_on_SizeValue_value_changed")