Updated ImGui to 1.90.1

This commit is contained in:
Simon Lübeß
2023-12-17 02:22:04 +01:00
parent 89e4e4ef17
commit 64f7896c15
4 changed files with 6 additions and 6 deletions
@@ -122,7 +122,7 @@ namespace GlitchyEditor.EditWindows
ImGui.PushID(header);
bool nodeOpen = ImGui.TreeNodeEx(header.CStr(), .DefaultOpen | .AllowItemOverlap | .Framed | .SpanFullWidth);
bool nodeOpen = ImGui.TreeNodeEx(header.CStr(), .DefaultOpen | .AllowOverlap | .Framed | .SpanFullWidth);
if (showComponentContextMenu != null)
{
@@ -464,7 +464,7 @@ namespace GlitchyEditor.EditWindows
float2 DirectoryItemSize = IconSize + (float2)ImGui.GetStyle().WindowPadding * 2 + float2(0, ImGui.GetFontSize());
ImGui.BeginChild("item", (.)DirectoryItemSize, false, .NoScrollbar);
ImGui.BeginChild("item", (.)DirectoryItemSize, .None, .NoScrollbar);
if (entry->Path == _selectedFile)
{
@@ -546,7 +546,7 @@ namespace GlitchyEditor.EditWindows
float2 DirectoryItemSize = IconSize + (float2)ImGui.GetStyle().WindowPadding * 2 + float2(0, ImGui.GetFontSize());
ImGui.BeginChild("item", (.)DirectoryItemSize, false, .NoScrollbar);
ImGui.BeginChild("item", (.)DirectoryItemSize, .None, .NoScrollbar);
if (entry->Path == _selectedFile)
{
@@ -690,7 +690,7 @@ namespace GlitchyEditor.EditWindows
float2 DirectoryItemSize = IconSize + (float2)ImGui.GetStyle().WindowPadding * 2 + float2(0, ImGui.GetFontSize());
ImGui.BeginChild("item", (.)DirectoryItemSize, false, .NoScrollbar);
ImGui.BeginChild("item", (.)DirectoryItemSize, .None, .NoScrollbar);
ImGui.PushStyleColor(.Button, ImGui.Vec4(0, 0, 0, 0));