We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
master
Is it possible to automatically scoll TextInput to the end? It's more important for me to see the file name, not the beginning of the path to it.
static StrUtf8 src_font_path = get_base_path() + "font_generator_data/fonts/ubuntu/Ubuntu-R.ttf"; ImGuiStyle& style = GetStyle(); Begin("Font"); StrUtf8 open_button_label = "..."; Text("File path"); PushItemWidth(-calc_button_width(open_button_label) - style.ItemSpacing.x); InputText("##src_font_path", &src_font_path); PopItemWidth(); SameLine(); Button(open_button_label.c_str()); ImGui::End();
The text was updated successfully, but these errors were encountered:
It's not currently possible. Duplicate of #4391. I hope to work on it in the following few months.
Sorry, something went wrong.
InputText: added ImGuiInputTextFlags_ElideLeft. (#1442, #1440, #4391, #…
d78e823
…7208, #8216)
This is now supported with ImGuiInputTextFlags_ElideLeft flag. See #1442 (comment)
ImGuiInputTextFlags_ElideLeft
Thanks!
InputText: added ImGuiInputTextFlags_ElideLeft. (ocornut#1442, ocornu…
936ae9e
…t#1440, ocornut#4391, ocornut#7208, ocornut#8216)
No branches or pull requests
Version/Branch of Dear ImGui:
master
Details:
Is it possible to automatically scoll TextInput to the end? It's more important for me to see the file name, not the beginning of the path to it.
The text was updated successfully, but these errors were encountered: