Skip to content

Commit

Permalink
Editor: Fixed project title input size.
Browse files Browse the repository at this point in the history
  • Loading branch information
mrdoob committed Jun 9, 2020
1 parent 9ca100f commit 7199af9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion editor/js/Sidebar.Project.js
Original file line number Diff line number Diff line change
Expand Up @@ -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() );

Expand Down

0 comments on commit 7199af9

Please sign in to comment.