From 560c3ce5afedbf7081f8f651fcd8569ac2465494 Mon Sep 17 00:00:00 2001 From: Paul Chote Date: Sun, 27 Jun 2010 23:59:54 +1200 Subject: [PATCH] Regress the editor so it actually works --- OpenRA.Editor/Form1.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/OpenRA.Editor/Form1.cs b/OpenRA.Editor/Form1.cs index 5f25035a62..8e1449f1f1 100644 --- a/OpenRA.Editor/Form1.cs +++ b/OpenRA.Editor/Form1.cs @@ -379,7 +379,7 @@ namespace OpenRA.Editor using (var nmd = new NewMapDialog()) { nmd.theater.Items.Clear(); - nmd.theater.Items.AddRange(Rules.TileSets.Select(a => a.Value.Name).ToArray()); + nmd.theater.Items.AddRange(Rules.TileSets.Select(a => a.Value.Id).ToArray()); nmd.theater.SelectedIndex = 0; if (DialogResult.OK == nmd.ShowDialog())