v1.0.2.0: Restore Hotbar Layout, fix config right-click menu, hotbar fallback
Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
@@ -226,7 +226,7 @@ namespace HSUI.Config.Tree
|
||||
}
|
||||
}
|
||||
|
||||
DrawExportResetContextMenu(selectionNode, selectionNode.Name);
|
||||
DrawExportResetContextMenu(selectionNode, selectionNode.Name + "_section");
|
||||
}
|
||||
|
||||
// changelog button
|
||||
|
||||
+1
-1
@@ -43,7 +43,7 @@ namespace HSUI.Config.Tree
|
||||
return;
|
||||
}
|
||||
|
||||
_nodeToReset = ImGuiHelper.DrawExportResetContextMenu(node, allowExport, allowReset);
|
||||
_nodeToReset = ImGuiHelper.DrawExportResetContextMenu(node, allowExport, allowReset, name);
|
||||
_nodeToResetName = name;
|
||||
}
|
||||
|
||||
|
||||
@@ -70,7 +70,7 @@ namespace HSUI.Config.Tree
|
||||
}
|
||||
}
|
||||
|
||||
DrawExportResetContextMenu(subSectionNode, subSectionNode.Name);
|
||||
DrawExportResetContextMenu(subSectionNode, Name + "_" + subSectionNode.Name + "_tab");
|
||||
|
||||
ImGui.BeginChild("subconfig value", new Vector2(0, 0), true);
|
||||
didReset |= subSectionNode.Draw(ref changed);
|
||||
|
||||
@@ -81,7 +81,7 @@ namespace HSUI.Config.Tree
|
||||
}
|
||||
}
|
||||
|
||||
DrawExportResetContextMenu(subSectionNode, subSectionNode.Name);
|
||||
DrawExportResetContextMenu(subSectionNode, Name + "_" + subSectionNode.Name + "_nested");
|
||||
|
||||
ImGui.BeginChild("subconfig" + Depth + " value", new Vector2(0, ImGui.GetWindowHeight()));
|
||||
didReset |= subSectionNode.Draw(ref changed);
|
||||
|
||||
Reference in New Issue
Block a user