X-Git-Url: https://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?a=blobdiff_plain;f=systemadm.vala;h=92ee503b1178e6df31f2dc363e48d33fb0ee0b0a;hb=a1d821025a51e119a5959fb8b3fb976e41260f1a;hp=d4b760ad1f0e7cb70b6e621077dd941947170ad1;hpb=9ef5867847bcf8bce7aea5514f58a318359b84af;p=elogind.git diff --git a/systemadm.vala b/systemadm.vala index d4b760ad1..92ee503b1 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");