|
@@ -9478,7 +9478,7 @@ struct ExampleAppConsole
|
|
|
ImGui::PushStyleVar(ImGuiStyleVar_FramePadding, ImVec2(0,0));
|
|
|
static ImGuiTextFilter filter;
|
|
|
filter.Draw("Filter (\"incl,-excl\") (\"error\")", 180);
|
|
|
- if (ImGui::IsItemHovered()) ImGui::SetKeyboardFocusHere(-1); // Auto focus on hover
|
|
|
+ //if (ImGui::IsItemHovered()) ImGui::SetKeyboardFocusHere(-1); // Auto focus on hover
|
|
|
ImGui::PopStyleVar();
|
|
|
ImGui::Separator();
|
|
|
|
|
@@ -9516,7 +9516,9 @@ struct ExampleAppConsole
|
|
|
strcpy(InputBuf, "");
|
|
|
}
|
|
|
|
|
|
- if (ImGui::IsItemHovered()) ImGui::SetKeyboardFocusHere(-1); // Auto focus on hover
|
|
|
+ // Demonstrate keeping auto focus on the input box
|
|
|
+ if (ImGui::IsItemHovered() || (ImGui::IsRootWindowOrAnyChildFocused() && !ImGui::IsAnyItemActive() && !ImGui::IsMouseClicked(0)))
|
|
|
+ ImGui::SetKeyboardFocusHere(-1); // Auto focus
|
|
|
|
|
|
ImGui::End();
|
|
|
}
|