2020-02-09 16:36:00 +00:00
(Click "Preview" above ^ to turn URL into clickable links)
2018-09-18 16:04:32 +00:00
2023-09-11 11:47:08 +00:00
1. FOR FIRST-TIME USERS PROBLEMS COMPILING/LINKING/RUNNING or LOADING FONTS, please use [GitHub Discussions ](https://github.com/ocornut/imgui/discussions ). EVERYTHING ELSE CAN BE POSTED HERE!
2018-04-18 20:19:50 +00:00
2021-08-30 15:06:51 +00:00
2. PLEASE CAREFULLY READ: [FAQ ](https://github.com/ocornut/imgui/blob/master/docs/FAQ.md )
2018-02-12 21:07:05 +00:00
2022-05-23 12:29:34 +00:00
3. PLEASE CAREFULLY READ: [Contributing Guidelines ](https://github.com/ocornut/imgui/blob/master/docs/CONTRIBUTING.md )
2019-10-16 09:23:15 +00:00
2021-08-30 15:06:51 +00:00
4. PLEASE MAKE SURE that you have: read the FAQ; explored the contents of `ShowDemoWindow()` including the Examples menu; searched among Issues; used your IDE to search for keywords in all sources and text files; and read the links above.
2018-04-18 20:19:50 +00:00
2020-02-09 16:36:00 +00:00
5. Be mindful that messages are being sent to the e-mail box of "Watching" users. Try to proof-read your messages before sending them. Edits are not seen by those users.
2019-03-05 10:03:32 +00:00
2020-02-09 16:36:00 +00:00
6. Delete points 1-6 and PLEASE FILL THE TEMPLATE BELOW before submitting your issue.
2019-03-05 10:03:32 +00:00
Thank you!
2018-04-18 20:19:50 +00:00
----
2018-11-30 17:18:15 +00:00
_(you may also go to Demo>About Window, and click "Config/Build Information" to obtain a bunch of detailed information that you can paste here)_
2018-04-19 12:47:29 +00:00
**Version/Branch of Dear ImGui:**
2018-04-18 20:19:50 +00:00
2018-11-30 17:18:15 +00:00
Version: XXX
Branch: XXX _(master/viewport/docking/etc.)_
2018-04-18 20:19:50 +00:00
2019-01-20 21:23:29 +00:00
**Back-end/Renderer/Compiler/OS**
2018-04-18 20:19:50 +00:00
2018-11-30 17:18:15 +00:00
Back-ends: imgui_impl_XXX.cpp + imgui_impl_XXX.cpp _(or specify if using a custom engine/back-end)_
2019-01-02 13:28:49 +00:00
Compiler: XXX _(if the question is related to building or platform specific features)_
2019-01-20 21:23:29 +00:00
Operating System: XXX
2018-04-18 20:19:50 +00:00
2019-01-20 21:23:29 +00:00
**My Issue/Question:**
2019-01-02 13:28:49 +00:00
XXX _(please provide as much context as possible)_
2018-04-18 20:19:50 +00:00
2019-01-20 21:23:29 +00:00
**Screenshots/Video**
2018-09-18 16:04:32 +00:00
2019-01-02 13:28:49 +00:00
XXX _(you can drag files here)_
**Standalone, minimal, complete and verifiable example:** _(see https://github.com/ocornut/imgui/issues/2261)_
2018-02-21 12:12:13 +00:00
```
2020-02-09 16:36:00 +00:00
// Here's some code anyone can copy and paste to reproduce your issue
2018-04-18 20:19:50 +00:00
ImGui::Begin("Example Bug");
MoreCodeToExplainMyIssue();
ImGui::End();
```