Browse Source

GUI: Color data unlikely to be available.

Mr.doob 13 years ago
parent
commit
e5d97a0af1
1 changed files with 0 additions and 8 deletions
  1. 0 8
      gui/js/ui/Sidebar.Properties.js

+ 0 - 8
gui/js/ui/Sidebar.Properties.js

@@ -83,13 +83,6 @@ Sidebar.Properties = function ( signals ) {
 	var facesCount = new UI.Text( 'absolute' ).setLeft( '90px' ).setColor( '#444' ).setFontSize( '12px' );
 	container.add( facesCount );
 
-	container.add( new UI.HorizontalRule() );
-
-	container.add( new UI.Text().setText( 'Colors' ).setColor( '#666' ) );
-
-	var colorsCount = new UI.Text( 'absolute' ).setLeft( '90px' ).setColor( '#444' ).setFontSize( '12px' );
-	container.add( colorsCount );
-
 
 	container.add( new UI.Break(), new UI.Break(), new UI.Break() );
 
@@ -174,7 +167,6 @@ Sidebar.Properties = function ( signals ) {
 				geometryClass.setText( getGeometryInstanceName( object.geometry ) );
 				verticesCount.setText( object.geometry.vertices.length );
 				facesCount.setText( object.geometry.faces.length );
-				colorsCount.setText( object.geometry.colors.length );
 
 			}