-
-
Notifications
You must be signed in to change notification settings - Fork 21.1k
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
Make create folder popup support nested folders #76084
Conversation
I'm not sure about the new lines in the description. I know that showing Edit: just saw the image in the proposal, the Dolphin file manager uses this display. |
It's still weird xd |
1b44e3c
to
e498dfa
Compare
Updated. The hierarchical preview is removed. |
void DirectoryCreateDialog::config(const String &p_base_dir) { | ||
base_dir = p_base_dir; | ||
label->set_text(vformat(TTR("Create new folder in %s:"), base_dir)); | ||
dir_path->set_text("new folder"); |
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.
Shouldn't this be translated?
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.
The name was not translated in the old dialog.
I'm not sure if it is fixed now, but Android export had trouble loading non-ascii paths / filenames.
f6d96a7
to
f3c85c9
Compare
Updated code. |
Maybe try using |
f3c85c9
to
9f38a68
Compare
The strange initial height is caused by Setting the status label to not autowrap for now. |
Thanks! |
Closes godotengine/godot-proposals#6678