# HG changeset patch # User IBBoard # Date 1253357584 0 # Node ID 11e81ba856842681454be5f463b8380cc7c0272a # Parent 346b4ac3499756cd13d49a31b12f9c3197525091 Fixes #166: Move game system changing to part of army creation * Fix display names diff -r 346b4ac34997 -r 11e81ba85684 FrmNewArmy.cs --- a/FrmNewArmy.cs Sat Sep 19 10:48:46 2009 +0000 +++ b/FrmNewArmy.cs Sat Sep 19 10:53:04 2009 +0000 @@ -103,6 +103,7 @@ // // lstRaces // + this.lstRaces.DisplayMember = "Name"; this.lstRaces.Location = new System.Drawing.Point(89, 33); this.lstRaces.Name = "lstRaces"; this.lstRaces.Size = new System.Drawing.Size(269, 121); @@ -200,6 +201,7 @@ // // gameSystems // + this.gameSystems.DisplayMember = "Name"; this.gameSystems.FormattingEnabled = true; this.gameSystems.Location = new System.Drawing.Point(89, 6); this.gameSystems.Name = "gameSystems";