Browse Source

Editor: Fixed project title input size.

Mr.doob 5 năm trước cách đây
mục cha
commit
7199af9884
1 tập tin đã thay đổi với 1 bổ sung1 xóa
  1. 1 1
      editor/js/Sidebar.Project.js

+ 1 - 1
editor/js/Sidebar.Project.js

@@ -29,7 +29,7 @@ var SidebarProject = function ( editor ) {
 	// Title
 
 	var titleRow = new UIRow();
-	var title = new UIInput( config.getKey( 'project/title' ) ).setLeft( '100px' ).onChange( function () {
+	var title = new UIInput( config.getKey( 'project/title' ) ).setLeft( '100px' ).setWidth( '150px' ).onChange( function () {
 
 		config.setKey( 'project/title', this.getValue() );