Skip to content

Commit

Permalink
Added missing AutoIconify window attribute.
Browse files Browse the repository at this point in the history
  • Loading branch information
SylvainBoilard committed Sep 19, 2019
1 parent 75482c9 commit 4d32823
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 0 deletions.
1 change: 1 addition & 0 deletions glfw-ocaml/GLFW.ml
Original file line number Diff line number Diff line change
Expand Up @@ -225,6 +225,7 @@ module WindowAttribute =
| Resizable : bool t
| Visible : bool t
| Decorated : bool t
| AutoIconify : bool t
| Floating : bool t
| Maximized : bool t
| ClientApi : client_api t
Expand Down
1 change: 1 addition & 0 deletions glfw-ocaml/GLFW.mli
Original file line number Diff line number Diff line change
Expand Up @@ -263,6 +263,7 @@ module WindowAttribute :
| Resizable : bool t
| Visible : bool t
| Decorated : bool t
| AutoIconify : bool t
| Floating : bool t
| Maximized : bool t
| ClientApi : client_api t
Expand Down
1 change: 1 addition & 0 deletions glfw-ocaml/GLFW_stubs.c
Original file line number Diff line number Diff line change
Expand Up @@ -171,6 +171,7 @@ static const struct ml_window_attrib ml_window_attrib[] = {
{GLFW_RESIZABLE, Int},
{GLFW_VISIBLE, Int},
{GLFW_DECORATED, Int},
{GLFW_AUTO_ICONIFY, Int},
{GLFW_FLOATING, Int},
{GLFW_MAXIMIZED, Int},
{GLFW_CLIENT_API, ClientApi},
Expand Down

0 comments on commit 4d32823

Please sign in to comment.