@@ -92,7 +92,7 @@ private void OnGUI()
92
92
spaceButton = new GUIContent ( "space" , "change space between parameters" ) ;
93
93
}
94
94
95
- if ( GUILayout . Button ( spaceButton , GUILayout . Width ( 80 ) ) )
95
+ if ( GUILayout . Button ( spaceButton , GUILayout . Width ( 50 ) ) )
96
96
{
97
97
SetSpace ( ) ;
98
98
}
@@ -107,7 +107,7 @@ private void OnGUI()
107
107
orientationButton = new GUIContent ( "rotate" , "change the table orientation" ) ;
108
108
}
109
109
110
- if ( GUILayout . Button ( orientationButton , GUILayout . Width ( 80 ) ) )
110
+ if ( GUILayout . Button ( orientationButton , GUILayout . Width ( 50 ) ) )
111
111
{
112
112
if ( OrientationVertical )
113
113
{
@@ -132,7 +132,7 @@ private void OnGUI()
132
132
{
133
133
refreshButton = new GUIContent ( "refresh" , "refresh" ) ;
134
134
}
135
- if ( GUILayout . Button ( refreshButton , GUILayout . Width ( 80 ) ) )
135
+ if ( GUILayout . Button ( refreshButton , GUILayout . Width ( 50 ) ) )
136
136
{
137
137
RefreshAll ( ) ;
138
138
}
@@ -147,7 +147,7 @@ private void OnGUI()
147
147
{
148
148
filtersButton = new GUIContent ( "filters" , "filters" ) ;
149
149
}
150
- if ( GUILayout . Button ( filtersButton , GUILayout . Width ( 80 ) ) )
150
+ if ( GUILayout . Button ( filtersButton , GUILayout . Width ( 50 ) ) )
151
151
{
152
152
Vector2 mousePosition = Event . current . mousePosition ;
153
153
PopupWindow . Show ( new Rect ( mousePosition . x , mousePosition . y + 20 , 0 , 0 ) , new ConfigTypeSelectionPopup ( selectedTypes , GroupScriptableObjectsByType , availableTypes ) ) ;
0 commit comments