mirror of
https://github.com/ocornut/imgui.git
synced 2026-01-14 00:34:18 +00:00
Added ShowAboutWindow(), About Window now showing various config/build information.
This commit is contained in:
parent
1bfcf8f339
commit
4ef06f5aa2
4 changed files with 127 additions and 12 deletions
|
|
@ -1096,7 +1096,7 @@ ImGuiIO::ImGuiIO()
|
|||
ConfigInputTextCursorBlink = true;
|
||||
ConfigResizeWindowsFromEdges = false;
|
||||
|
||||
// Settings (User Functions)
|
||||
// Platform Functions
|
||||
GetClipboardTextFn = GetClipboardTextFn_DefaultImpl; // Platform dependent default implementations
|
||||
SetClipboardTextFn = SetClipboardTextFn_DefaultImpl;
|
||||
ClipboardUserData = NULL;
|
||||
|
|
@ -1107,7 +1107,7 @@ ImGuiIO::ImGuiIO()
|
|||
RenderDrawListsFn = NULL;
|
||||
#endif
|
||||
|
||||
// Input (NB: we already have memset zero the entire structure)
|
||||
// Input (NB: we already have memset zero the entire structure!)
|
||||
MousePos = ImVec2(-FLT_MAX, -FLT_MAX);
|
||||
MousePosPrev = ImVec2(-FLT_MAX, -FLT_MAX);
|
||||
MouseDragThreshold = 6.0f;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue