Skip to content

Commit

Permalink
Update completion badge and fix syntax error in visual example for se…
Browse files Browse the repository at this point in the history
…t_window_size
  • Loading branch information
swistakm committed Nov 21, 2019
1 parent faf2a79 commit 1b187c6
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
[![completion](https://img.shields.io/badge/completion-74%25%20%28342%20of%20457%29-blue.svg)](https://github.com/swistakm/pyimgui)
[![completion](https://img.shields.io/badge/completion-75%25%20%28343%20of%20457%29-blue.svg)](https://github.com/swistakm/pyimgui)
[![Coverage Status](https://coveralls.io/repos/github/swistakm/pyimgui/badge.svg?branch=master)](https://coveralls.io/github/swistakm/pyimgui?branch=master)
[![Documentation Status](https://readthedocs.org/projects/pyimgui/badge/?version=latest)](https://pyimgui.readthedocs.io/en/latest/?badge=latest)

Expand Down
10 changes: 5 additions & 5 deletions imgui/core.pyx
Original file line number Diff line number Diff line change
Expand Up @@ -2180,11 +2180,11 @@ def set_window_size(
imgui.set_window_size(80, 180)
imgui.end()
.. wraps::
void SetWindowSize(
const ImVec2& size,
ImGuiCond cond = 0,
)
.. wraps::
void SetWindowSize(
const ImVec2& size,
ImGuiCond cond = 0,
)
"""
cimgui.SetWindowSize(_cast_args_ImVec2(width, height), condition)

Expand Down

0 comments on commit 1b187c6

Please sign in to comment.