Fix marker

This commit is contained in:
ackwell 2024-05-03 22:42:28 +10:00
parent 9063d131ba
commit 46a111d152

View file

@ -401,13 +401,13 @@ public partial class ModEditWindow
private void DrawInvalidMaterialMarker() private void DrawInvalidMaterialMarker()
{ {
using var colorHandle = ImRaii.PushColor(ImGuiCol.TextDisabled, 0xFF0000FF, true); using (var font = ImRaii.PushFont(UiBuilder.IconFont))
ImGuiUtil.TextColored(0xFF0000FF, FontAwesomeIcon.TimesCircle.ToIconString());
ImGuiComponents.HelpMarker( ImGuiUtil.HoverTooltip(
"Materials must be either relative (e.g. \"/filename.mtrl\")\n" "Materials must be either relative (e.g. \"/filename.mtrl\")\n"
+ "or absolute (e.g. \"bg/full/path/to/filename.mtrl\"),\n" + "or absolute (e.g. \"bg/full/path/to/filename.mtrl\"),\n"
+ "and must end in \".mtrl\".", + "and must end in \".mtrl\".");
FontAwesomeIcon.TimesCircle);
} }
private bool DrawModelLodDetails(MdlTab tab, int lodIndex, bool disabled) private bool DrawModelLodDetails(MdlTab tab, int lodIndex, bool disabled)