Skip to content
This repository has been archived by the owner on Dec 9, 2022. It is now read-only.

Commit

Permalink
setroubleshoot: Fix "list all alerts" in sealert gui
Browse files Browse the repository at this point in the history
There was a typo in commit "044d6fbb" disabling model for treeview
in "alert_list_window" (list of all alerts). This caused the list
of all alerts to appear empty.

Fixes:
   https://bugzilla.redhat.com/show_bug.cgi?id=1370272
   https://bugzilla.redhat.com/show_bug.cgi?id=1332485

Signed-off-by: Vit Mojzis <vmojzis@redhat.com>
  • Loading branch information
vmojzis authored and bachradsusi committed Aug 31, 2016
1 parent 82a6f1c commit 47ab292
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion framework/src/setroubleshoot/browser.py
Expand Up @@ -291,7 +291,7 @@ def make_treeview(self):
tmsort = Gtk.TreeModelSort(model = self.liststore)

cols = [_("#"), _("Source Process"), _("Attempted Access"), _("On this"), _("Occurred"), _("Status")]
# self.treeview.set_model(tmsort)
self.treeview.set_model(tmsort)
x = 0
for c in cols:
cell = Gtk.CellRendererText()
Expand Down

0 comments on commit 47ab292

Please sign in to comment.