Skip to content

Commit

Permalink
fixes rubberduck-vba#269; TodoExplorere Refreshes on Show now.
Browse files Browse the repository at this point in the history
  • Loading branch information
rubberduck203 committed Feb 27, 2015
1 parent f1a2bdc commit 0fdb219
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions RetailCoder.VBE/UI/ToDoItems/ToDoExplorerDockablePresenter.cs
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,13 @@ public ToDoExplorerDockablePresenter(IRubberduckParser parser, IEnumerable<ToDoM
Control.RefreshToDoItems += RefreshToDoList;
Control.SortColumn += SortColumn;

//RefreshToDoList(this, EventArgs.Empty);
}

public override void Show()
{
RefreshToDoList(this, EventArgs.Empty);
base.Show();
}

private void SortColumn(object sender, DataGridViewCellMouseEventArgs e)
Expand Down

0 comments on commit 0fdb219

Please sign in to comment.