diff options
author | emkael <emkael@tlen.pl> | 2017-12-16 10:14:03 +0100 |
---|---|---|
committer | emkael <emkael@tlen.pl> | 2017-12-16 10:14:03 +0100 |
commit | 5488abac17b2d052540f8d6e663affb2c2874ddf (patch) | |
tree | a30ebd5d820ec8e45268207201447da8b1ea1224 /Aktywator | |
parent | f523e477eff19af281808aa2c403502cb1cfe3bc (diff) |
Fix for #34.
Diffstat (limited to 'Aktywator')
-rw-r--r-- | Aktywator/HandRecordPreview.cs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Aktywator/HandRecordPreview.cs b/Aktywator/HandRecordPreview.cs index d5e8446..57562a1 100644 --- a/Aktywator/HandRecordPreview.cs +++ b/Aktywator/HandRecordPreview.cs @@ -29,9 +29,9 @@ namespace Aktywator lSouthHearts.Text = record.south[1]; lSouthDiamonds.Text = record.south[2]; lSouthClubs.Text = record.south[3]; - lWestSpades.Text = record.north[0]; - lWestHearts.Text = record.north[1]; - lWestDiamonds.Text = record.north[2]; + lWestSpades.Text = record.west[0]; + lWestHearts.Text = record.west[1]; + lWestDiamonds.Text = record.west[2]; lWestClubs.Text = record.west[3]; this.Text = "ROZDANIE " + boardNo; } |