Changeset 2129 for trunk/eraser/Eraser/SchedulerPanel.cs
- Timestamp:
- 5/15/2010 1:22:08 PM (3 years ago)
- File:
-
- 1 edited
-
trunk/eraser/Eraser/SchedulerPanel.cs (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/eraser/Eraser/SchedulerPanel.cs
r2118 r2129 91 91 92 92 //Set the next run time of the task 93 if (task.Queued )93 if (task.Queued || task.Schedule == Schedule.RunNow) 94 94 { 95 95 item.SubItems[1].Text = S._("Queued for execution"); 96 96 item.SubItems[2].Text = string.Empty; 97 97 } 98 else if (task.Executing && !schedulerProgress.Visible)99 task_TaskStarted(null, EventArgs.Empty);100 98 else if (task.Schedule is RecurringSchedule) 101 99 item.SubItems[1].Text = ((task.Schedule as RecurringSchedule).NextRun. 102 100 ToString("F", CultureInfo.CurrentCulture)); 103 else if (task.Schedule == Schedule.Run Now || task.Schedule == Schedule.RunManually)101 else if (task.Schedule == Schedule.RunManually) 104 102 item.SubItems[1].Text = S._("Not queued"); 105 103 else
Note: See TracChangeset
for help on using the changeset viewer.
