Description:
Fix position of start menu.
Commit status:
[Not Reviewed]
References:
Comments:
0 Commit comments 0 Inline Comments
Unresolved TODOs:
There are no unresolved TODOs
Add another comment

r491:87775570855d -

@@ -31,9 +31,9
31
31
32 //Let's let core builds be deterministic
32 //Let's let core builds be deterministic
33 #if NETCOREAPP
33 #if NETCOREAPP
34 [assembly:AssemblyVersion("0.32.02.0")]
34 [assembly:AssemblyVersion("0.36.31.0")]
35 #else
35 #else
36 [assembly:AssemblyVersion("0.32.02.*")]
36 [assembly:AssemblyVersion("0.36.31.*")]
37 #endif
37 #endif
38
38
39 class FNAGame : Game
39 class FNAGame : Game
@@ -28,7 +28,7
28
28
29 StyleSets.defaultSet.push();
29 StyleSets.defaultSet.push();
30
30
31 ImGui.SetNextWindowPos(new Num.Vector2(((width/2) - 40), 200));
31 ImGui.SetNextWindowPos(new Num.Vector2(((width/2) - (button_size.X/2)), 200));
32
32
33 ImGui.Begin("##Toolbar", ref newShow, ImGuiWindowFlags.AlwaysAutoResize | ImGuiWindowFlags.NoResize | ImGuiWindowFlags.NoCollapse | ImGuiWindowFlags.NoSavedSettings | ImGuiWindowFlags.NoTitleBar);
33 ImGui.Begin("##Toolbar", ref newShow, ImGuiWindowFlags.AlwaysAutoResize | ImGuiWindowFlags.NoResize | ImGuiWindowFlags.NoCollapse | ImGuiWindowFlags.NoSavedSettings | ImGuiWindowFlags.NoTitleBar);
34
34
You need to be logged in to leave comments. Login now