Skip to content

Commit

Permalink
docs: fix completion marks for IsMouse* functions (closes #60)
Browse files Browse the repository at this point in the history
  • Loading branch information
swistakm committed Apr 15, 2018
1 parent 849a061 commit 669dff4
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions imgui/cimgui.pxd
Original file line number Diff line number Diff line change
Expand Up @@ -985,13 +985,13 @@ cdef extern from "imgui.h" namespace "ImGui":
) except +
bool IsKeyReleased(int key_index) except + #
bool IsMouseDown(int button) except + #
bool IsMouseClicked( #
bool IsMouseClicked( #
int button,
# note: optional
bool repeat
) except +
bool IsMouseDoubleClicked(int button) except + #
bool IsMouseReleased(int button) except + #
bool IsMouseReleased(int button) except + #
bool IsMouseHoveringWindow() except + #
bool IsMouseHoveringAnyWindow() except + #
bool IsMouseHoveringRect( #
Expand All @@ -1003,7 +1003,7 @@ cdef extern from "imgui.h" namespace "ImGui":
# note: optional
int button, float lock_threshold
) except +
ImVec2 GetMousePos() except + #
ImVec2 GetMousePos() except + #
ImVec2 GetMousePosOnOpeningCurrentPopup() except + #
ImVec2 GetMouseDragDelta( #
# note: optional
Expand Down

0 comments on commit 669dff4

Please sign in to comment.