Skip to content
This repository has been archived by the owner on Sep 18, 2018. It is now read-only.

Commit

Permalink
feat(TransactionView): refilter view
Browse files Browse the repository at this point in the history
Don't clear and repopulate the transaction view when the
filter dates change. Gtk.TreeModelFilter.refilter () is
faster.
  • Loading branch information
nlaplante committed Feb 8, 2015
1 parent bdb706d commit c9ea0b2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/view/TransactionView.vala
Original file line number Diff line number Diff line change
Expand Up @@ -848,7 +848,7 @@ namespace Envelope.View {
filter_from = filter_view.from;
filter_to = filter_view.to;

add_transactions ();
view_store.refilter ();
});

// right-click menu
Expand Down

0 comments on commit c9ea0b2

Please sign in to comment.