zwcloud / ImGui

Immediate Mode GUI for C#
https://zwcloud.net/#project/imgui
GNU Affero General Public License v3.0
197 stars 21 forks source link

Bullet issue: bullet text isn't indented and the bullet point is drawn on text. #48

Closed zwcloud closed 4 years ago

zwcloud commented 4 years ago
GUILayout.BulletText("Bullet point 1");
GUILayout.BulletText("Bullet point 2\nOn multiple lines");
GUILayout.PushStyle(StylePropertyName.CellSpacingHorizontal, 0);//remove horizontal cell spacing of following groups.
GUILayout.BeginHorizontal("HGroup~1"); GUILayout.Bullet("_Bullet"); GUILayout.Text("Bullet point 3 (two calls)"); GUILayout.EndHorizontal();
GUILayout.BeginHorizontal("HGroup~2"); GUILayout.Bullet("_Bullet"); GUILayout.Button("Button"); GUILayout.EndHorizontal();

image

zwcloud commented 4 years ago

image Fixed at bd72b1348fee53b212fdfdfd2a4f4839d3e7d88b

The rectangle is another issue being tracked: #52