MakovWait / godots

🚀Ultimate go-to hub for managing your Godot versions and projects! 🚀
MIT License
323 stars 25 forks source link

Fix ok button not updating when file selected #29

Closed TrialDragon closed 11 months ago

TrialDragon commented 11 months ago

Add a call to _update_ok_button when files are selected.

It appears that the line edit text changed signal is not detecting the changes to the path edit or name edit nodes text values via code. As such _update_ok_button was not getting called when expected leading to the ok button being disabled when a valid path is inputted.

Adding a call to _update_ok_button when a file is selected means it will check if confirmation should be allowed when expected.

Fixes #25

MakovWait commented 11 months ago

Thanks!!