Skip to content

Commit e6f9bce

Browse files
committed
feat: fix #19 and update ui
1 parent 454cca0 commit e6f9bce

File tree

3 files changed

+5
-3
lines changed

3 files changed

+5
-3
lines changed

Editor/Scripts/Window/PlayableGraphMonitorWindow_GraphView.cs

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,9 @@ private void CreateGraphView(VisualElement container)
1414
{
1515
style =
1616
{
17-
flexGrow = new StyleFloat(1)
17+
flexGrow = new StyleFloat(1),
18+
// Fix #19
19+
height = Length.Percent(100),
1820
}
1921
};
2022

Editor/Scripts/Window/PlayableGraphMonitorWindow_Toolbar.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ public partial class PlayableGraphMonitorWindow
6363
private ToolbarMenu _selectRootNodeMenu;
6464

6565
// Common data
66-
private static Color NotableTextColor => Color.yellow;
66+
private static Color NotableTextColor => Color.red;
6767
private static Color NormalTextColor => EditorGUIUtility.isProSkin
6868
? Color.white
6969
: Color.black;

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "com.greenbamboogames.playablegraphmonitor",
3-
"version": "2.5.5",
3+
"version": "2.5.6",
44
"displayName": "PlayableGraph Monitor!",
55
"description": "PlayableGraph monitor.",
66
"unity": "2019.4",

0 commit comments

Comments
 (0)