2020-02-09 17:36:00 +01:00
(Click "Preview" above ^ to turn URL into clickable links)
2018-09-18 18:04:32 +02:00
2021-08-30 17:06:51 +02:00
1. FOR FIRST-TIME USERS ISSUES COMPILING/LINKING/RUNNING or LOADING FONTS, please use [GitHub Discussions ](https://github.com/ocornut/imgui/discussions ).
2018-04-18 22:19:50 +02:00
2021-08-30 17:06:51 +02:00
2. PLEASE CAREFULLY READ: [FAQ ](https://github.com/ocornut/imgui/blob/master/docs/FAQ.md )
2018-02-12 22:07:05 +01:00
2021-08-30 17:06:51 +02:00
3. PLEASE CAREFULLY READ: [Issue Submitting Guidelines ](https://github.com/ocornut/imgui/issues/2261 )
2019-10-16 11:23:15 +02:00
2021-08-30 17:06:51 +02: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 22:19:50 +02:00
2020-02-09 17:36:00 +01: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 11:03:32 +01:00
2020-02-09 17:36:00 +01:00
6. Delete points 1-6 and PLEASE FILL THE TEMPLATE BELOW before submitting your issue.
2019-03-05 11:03:32 +01:00
Thank you!
2018-04-18 22:19:50 +02:00
----
2018-11-30 18:18:15 +01: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 14:47:29 +02:00
**Version/Branch of Dear ImGui:**
2018-04-18 22:19:50 +02:00
2018-11-30 18:18:15 +01:00
Version: XXX
Branch: XXX _(master/viewport/docking/etc.)_
2018-04-18 22:19:50 +02:00
2019-01-20 22:23:29 +01:00
**Back-end/Renderer/Compiler/OS**
2018-04-18 22:19:50 +02:00
2018-11-30 18:18:15 +01:00
Back-ends: imgui_impl_XXX.cpp + imgui_impl_XXX.cpp _(or specify if using a custom engine/back-end)_
2019-01-02 14:28:49 +01:00
Compiler: XXX _(if the question is related to building or platform specific features)_
2019-01-20 22:23:29 +01:00
Operating System: XXX
2018-04-18 22:19:50 +02:00
2019-01-20 22:23:29 +01:00
**My Issue/Question:**
2019-01-02 14:28:49 +01:00
XXX _(please provide as much context as possible)_
2018-04-18 22:19:50 +02:00
2019-01-20 22:23:29 +01:00
**Screenshots/Video**
2018-09-18 18:04:32 +02:00
2019-01-02 14:28:49 +01:00
XXX _(you can drag files here)_
**Standalone, minimal, complete and verifiable example:** _(see https://github.com/ocornut/imgui/issues/2261)_
2018-02-21 13:12:13 +01:00
```
2020-02-09 17:36:00 +01:00
// Here's some code anyone can copy and paste to reproduce your issue
2018-04-18 22:19:50 +02:00
ImGui::Begin("Example Bug");
MoreCodeToExplainMyIssue();
ImGui::End();
```