Skip to content

Commit

Permalink
Workaround to libyui/libyui-ncurses#55
Browse files Browse the repository at this point in the history
  • Loading branch information
anaselli committed Mar 18, 2017
1 parent c54cb1e commit fc41387
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions dnfdragora/ui.py
Original file line number Diff line number Diff line change
Expand Up @@ -762,8 +762,8 @@ def _fillGroupTree(self) :
itemCollection = yui.YItemCollection(v)
self.tree.startMultipleChanges()
self.tree.deleteAllItems()
self.tree.addItems(itemCollection)
self.tree.doneMultipleChanges()
self.tree.addItems(itemCollection)
yui.YUI.app().normalCursor()


Expand Down Expand Up @@ -912,8 +912,8 @@ def _searchPackages(self, filter='all', createTreeItem=False) :
treeItem.setSelected(True)
self.groupList[self.gIcons.groups['Search']['title']] = { "item" : treeItem, "name" : _("Search") }
self.tree.addItem(treeItem)
self.tree.rebuildTree()
self.tree.doneMultipleChanges()
self.tree.rebuildTree()
yui.YUI.app().normalCursor()
else :
return False
Expand Down

0 comments on commit fc41387

Please sign in to comment.