mirror of
https://github.com/scratchfoundation/bgfx.git
synced 2024-11-28 10:35:43 -05:00
12-lod: Fixed size of imgui.
This commit is contained in:
parent
d5bc94454e
commit
c9de4a1f19
1 changed files with 1 additions and 1 deletions
|
@ -414,7 +414,7 @@ int _main_(int /*_argc*/, char** /*_argv*/)
|
|||
, height
|
||||
);
|
||||
|
||||
imguiBeginScrollArea("Toggle transitions", width - width / 5 - 10, 10, width / 5, height / 7, &scrollArea);
|
||||
imguiBeginScrollArea("Toggle transitions", width - width / 5 - 10, 10, width / 5, height / 6, &scrollArea);
|
||||
imguiSeparatorLine();
|
||||
|
||||
if (imguiButton(transitions ? "ON" : "OFF") )
|
||||
|
|
Loading…
Reference in a new issue