-
-
Notifications
You must be signed in to change notification settings - Fork 21.7k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fix project name cleared when browsing path #95062
Fix project name cleared when browsing path #95062
Conversation
@@ -370,6 +370,8 @@ void ProjectDialog::_browse_project_path() { | |||
} else { | |||
fdialog_project->set_file_mode(EditorFileDialog::FILE_MODE_OPEN_DIR); | |||
} | |||
|
|||
hide(); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This fixes the exclusive window error.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
IMHO you should also show the dialog when quit the browser window? Otherwise when user cancel the fdialog_project
they won't see the project_dialog
anymore.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Done.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Can confirm this works
c456368
to
30da21f
Compare
Thanks! |
Fixes #95038