diff options
| author | s-ol <s-ol@users.noreply.github.com> | 2019-10-20 22:32:49 +0000 |
|---|---|---|
| committer | s-ol <s-ol@users.noreply.github.com> | 2019-10-20 22:34:49 +0000 |
| commit | 407a006acdabd11a1cfd7b370834d7036c99ac96 (patch) | |
| tree | 1503fee58190fc3a6e3e8b85c6db20d06f4846e9 /src/main.zig | |
| parent | add openGL3 impl (still failing) (diff) | |
| download | zig-imgui-407a006acdabd11a1cfd7b370834d7036c99ac96.tar.gz zig-imgui-407a006acdabd11a1cfd7b370834d7036c99ac96.zip | |
more glfw
Diffstat (limited to 'src/main.zig')
| -rw-r--r-- | src/main.zig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main.zig b/src/main.zig index 59b1804..882faf0 100644 --- a/src/main.zig +++ b/src/main.zig @@ -49,7 +49,7 @@ pub fn main() !void { const style = c.igGetStyle(); c.igStyleColorsDark(style); - if (io.*.ConfigFlags & @enumToInt(c.ImGuiConfigFlags_ViewportsEnable) != 0) { + if (false and io.*.ConfigFlags & @enumToInt(c.ImGuiConfigFlags_ViewportsEnable) != 0) { style.*.WindowRounding = 0.0; style.*.Colors[@enumToInt(c.ImGuiCol_WindowBg)].w = 1.0; } |
