Skip to content

Commit

Permalink
Fix reflection icon
Browse files Browse the repository at this point in the history
  • Loading branch information
isadorasophia committed Sep 24, 2024
1 parent 8fd5ebc commit e2309bd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Murder.Editor/EditorScene_Editors.cs
Original file line number Diff line number Diff line change
Expand Up @@ -249,7 +249,7 @@ private void DrawSelectedAsset(GameAsset asset)

ImGui.SameLine();
bool showReflection = assetEditor.ShowReflection;
ImGui.Checkbox("\ue571", ref showReflection);
ImGui.Checkbox("\uf24d", ref showReflection);
ImGui.SetItemTooltip($"{(showReflection ? "Show" : "Hide")} reflections");
assetEditor.ShowReflection = showReflection;
}
Expand Down

0 comments on commit e2309bd

Please sign in to comment.