diff options
author | chai <chaifix@163.com> | 2021-08-19 19:42:26 +0800 |
---|---|---|
committer | chai <chaifix@163.com> | 2021-08-19 19:42:26 +0800 |
commit | f50326c223546e862f6800f643490e13616960e0 (patch) | |
tree | b883ac692425ae2928fbaf127bc4eb1d9a427796 /Assets/ActionTool/Editor/ActionPreviewEditor.cs | |
parent | 60253a4c2bf15c1d3d1ab2c0abba4c00e8fda236 (diff) |
*misc
Diffstat (limited to 'Assets/ActionTool/Editor/ActionPreviewEditor.cs')
-rw-r--r-- | Assets/ActionTool/Editor/ActionPreviewEditor.cs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Assets/ActionTool/Editor/ActionPreviewEditor.cs b/Assets/ActionTool/Editor/ActionPreviewEditor.cs index 3ed3513b..6ff60ed5 100644 --- a/Assets/ActionTool/Editor/ActionPreviewEditor.cs +++ b/Assets/ActionTool/Editor/ActionPreviewEditor.cs @@ -833,10 +833,10 @@ namespace ActionTool bool frameSelect = GUI.Toggle(frameRect, isSelect, new GUIContent("", animEvent.Name), styles.keyFrameButton);
GUI.backgroundColor = prevColor;
- Rect labelRect = new Rect(pos.x - 1, pos.y + 2, kFrameWidth, kFrameHeight);
+ Rect labelRect = new Rect(pos.x, pos.y + 2, kFrameWidth, kFrameHeight);
Color col = GUI.color;
GUI.color = Color.yellow;
- GUI.Label(labelRect, animEvent.shortName, styles.textBold);
+ GUI.Label(labelRect, animEvent.shortName, styles.textBoldSmall);
GUI.color = col;
if (!isSelect && frameSelect)
|