diff options
author | Lennart Poettering <lennart@poettering.net> | 2010-05-16 02:37:59 +0200 |
---|---|---|
committer | Lennart Poettering <lennart@poettering.net> | 2010-05-16 02:37:59 +0200 |
commit | a1d821025a51e119a5959fb8b3fb976e41260f1a (patch) | |
tree | 1647b14c1a3939a537c3f1060209f83e86e5b2b3 /systemadm.vala | |
parent | 129126f3792c452c871c0a096dcb1020c4d8096b (diff) |
systemadm: consider units with a job live
Diffstat (limited to 'systemadm.vala')
-rw-r--r-- | systemadm.vala | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/systemadm.vala b/systemadm.vala index d4b760ad1f..92ee503b11 100644 --- a/systemadm.vala +++ b/systemadm.vala @@ -633,9 +633,9 @@ public class MainWindow : Window { } public bool unit_filter(TreeModel model, TreeIter iter) { - string id, active_state; + string id, active_state, job; - model.get(iter, 0, out id, 3, out active_state); + model.get(iter, 0, out id, 3, out active_state, 5, out job); if (id == null) return false; @@ -646,7 +646,7 @@ public class MainWindow : Window { return true; case 1: - return active_state != "inactive"; + return active_state != "inactive" || job != ""; case 2: return id.has_suffix(".service"); |