Skip to content

Commit

Permalink
1.1.1: Fix Minor Logic Bug
Browse files Browse the repository at this point in the history
  • Loading branch information
mmstick committed Nov 11, 2017
1 parent 6dbb4a1 commit 49badb6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/bin/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,7 @@ fn main() {
category.connect_changed(move |category| {
if let Some(category) = category.get_active_text() {
filter_category(&category, get_search(&search), &rows.borrow(), |family| {
!installed.get_active() || !is_installed(&archive, family, &path)
installed.get_active() || !is_installed(&archive, family, &path)
});
}
});
Expand Down

0 comments on commit 49badb6

Please sign in to comment.