Skip to content

Commit

Permalink
feat: fix #19 and update ui
Browse files Browse the repository at this point in the history
  • Loading branch information
SolarianZ committed May 10, 2024
1 parent 454cca0 commit e6f9bce
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,9 @@ private void CreateGraphView(VisualElement container)
{
style =
{
flexGrow = new StyleFloat(1)
flexGrow = new StyleFloat(1),
// Fix #19
height = Length.Percent(100),
}
};

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ public partial class PlayableGraphMonitorWindow
private ToolbarMenu _selectRootNodeMenu;

// Common data
private static Color NotableTextColor => Color.yellow;
private static Color NotableTextColor => Color.red;
private static Color NormalTextColor => EditorGUIUtility.isProSkin
? Color.white
: Color.black;
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "com.greenbamboogames.playablegraphmonitor",
"version": "2.5.5",
"version": "2.5.6",
"displayName": "PlayableGraph Monitor!",
"description": "PlayableGraph monitor.",
"unity": "2019.4",
Expand Down

0 comments on commit e6f9bce

Please sign in to comment.