ソースを参照

Editor: Moved history to settings.

Mr.doob 9 年 前
コミット
bca0bc9f9c
1 ファイル変更3 行追加3 行削除
  1. 3 3
      editor/js/Sidebar.js

+ 3 - 3
editor/js/Sidebar.js

@@ -35,13 +35,13 @@ var Sidebar = function ( editor ) {
 	container.add( scene );
 
 	var project = new UI.Span().add(
-		new Sidebar.Project( editor ),
-		new Sidebar.History( editor )
+		new Sidebar.Project( editor )
 	);
 	container.add( project );
 
 	var settings = new UI.Span().add(
-		new Sidebar.Settings( editor )
+		new Sidebar.Settings( editor ),
+		new Sidebar.History( editor )
 	);
 	container.add( settings );