Skip to content

Commit d211adb

Browse files
committed
Fix Copy&Paste error
1 parent 7f4d95f commit d211adb

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

RunRevealControl.xaml.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -140,10 +140,10 @@ private void Run_PropertyChanged(object sender, PropertyChangedEventArgs e)
140140
Platform = run.Platform;
141141
break;
142142
case "Estimate":
143-
Game = run.Estimate;
143+
Estimate = run.Estimate;
144144
break;
145145
case "Time":
146-
Game = run.Time;
146+
Time = run.Time;
147147
break;
148148
default:
149149
break;

ScheduleItemControl.xaml.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -152,10 +152,10 @@ private void Run_PropertyChanged(object sender, PropertyChangedEventArgs e)
152152
Platform = run.Platform;
153153
break;
154154
case "Estimate":
155-
Game = run.Estimate;
155+
Estimate = run.Estimate;
156156
break;
157157
case "Time":
158-
Game = run.Time;
158+
Time = run.Time;
159159
break;
160160
case "Presented":
161161
if (!run.Presented)

0 commit comments

Comments
 (0)