Skip to content
This repository has been archived by the owner on Aug 28, 2024. It is now read-only.

Commit

Permalink
fix: highlight fix.
Browse files Browse the repository at this point in the history
  • Loading branch information
ArchiDog1998 committed Jul 9, 2024
1 parent 59ce4a7 commit 6310b59
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
2 changes: 1 addition & 1 deletion ActionTimelineEx/Helpers/DrawHelper.cs
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ public static void Init()
array[i + 3] = imageData[i + 3];
}

_roundTex = Svc.Texture.CreateFromRaw(new Dalamud.Interface.Textures.RawImageSpecification(tex!.Header.Width, tex!.Header.Height, 4), array);
_roundTex = Svc.Texture.CreateFromRaw(RawImageSpecification.Rgba32(tex!.Header.Width, tex!.Header.Height), array);
}

public static void DrawDamage(this ImDrawListPtr drawList, Vector2 position, float size, uint lightCol)
Expand Down
6 changes: 5 additions & 1 deletion ActionTimelineEx/Localization/Localization.json
Original file line number Diff line number Diff line change
Expand Up @@ -103,5 +103,9 @@
"XIVConfigUI.Attributes.ConfigUnitType.Degree": "Angle Unit, in degrees.",
"XIVConfigUI.Attributes.ConfigUnitType.Yalms": "Distance Unit, in yalms.",
"XIVConfigUI.Attributes.ConfigUnitType.Percent": "Ratio Unit, as percentage.",
"XIVConfigUI.Attributes.ConfigUnitType.Pixels": "Display Unit, in pixels."
"XIVConfigUI.Attributes.ConfigUnitType.Pixels": "Display Unit, in pixels.",
"ActionTimelineEx.Punchline": "Show your actions in real-time.",
"ActionTimeline.Windows.SettingsWindow+AddOne": "AddOne",
"ActionTimeline.Windows.SettingsWindow+ChangeLog": "ChangeLog",
"ActionTimelineEx.Description": "Configurable timeline display of all the actions you use."
}

0 comments on commit 6310b59

Please sign in to comment.