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