diff --git a/cinelerra-5.1/cinelerra/assetedit.C b/cinelerra-5.1/cinelerra/assetedit.C
index 9bdf847f..2f232833 100644
--- a/cinelerra-5.1/cinelerra/assetedit.C
+++ b/cinelerra-5.1/cinelerra/assetedit.C
@@ -195,7 +195,7 @@ BC_Window* AssetEdit::new_gui()
 
 int AssetEdit::window_height()
 {
-	int h = yS(128 + 64);
+	int h = yS(128 + 64 + 32);
 	if( indexable->have_audio() ) h += yS(200);
 	if( indexable->have_video() ) {
 		h += yS(160);
@@ -529,6 +529,27 @@ void AssetEditWindow::create_objects()
 				(ArrayList<BC_ListBoxItem*>*)&mwindow->interlace_asset_modes,
 				x2 + edit_ilace_mode->get_w(), y));
 			y += title->get_h() + yS(15);
+		if( asset ) {
+			add_subwindow(title = new BC_Title(x1, y, _("Asset's color_range:")));
+			char col_range[64];
+			strcpy(col_range, "Unk");
+			if(asset->ff_color_range == 0)
+			strcpy(col_range, "PC");
+			if (asset->ff_color_range == 1)
+			strcpy(col_range, "TV");
+			sprintf(string, "%s", col_range);
+			title = new BC_Title(x, y, string, MEDIUMFONT, mwindow->theme->assetedit_color);
+			add_subwindow(title);
+			y += title->get_h() + ypad5;
+/*			ilacemode_to_text(string, asset->interlace_mode);
+			AssetEditILacemode *edit_ilace_mode;
+			add_subwindow(edit_ilace_mode = new AssetEditColorRangemode(this, string, x2, y, xS(160)));
+			add_subwindow(new AssetEditColorRangePulldown(mwindow, edit_color_range_mode,
+				&asset_edit->changed_params->ff_color_range,
+				(ArrayList<BC_ListBoxItem*>*)&mwindow->color_range_modes,
+				x2 + edit_color_range_mode->get_w(), y));
+			y += title->get_h() + yS(15);*/
+		}
 		}
 	}
 	if( asset && asset->timecode >= 0 ) {
