diff options
author | René 'Necoro' Neumann <necoro@necoro.net> | 2008-07-10 01:46:34 +0200 |
---|---|---|
committer | René 'Necoro' Neumann <necoro@necoro.net> | 2008-07-10 01:46:34 +0200 |
commit | 1aaa1b04303219e7e4624a98bc8c42ce6dbff2e5 (patch) | |
tree | c3ba8d5ad12a731e3cb7911ba12f866d8348bb85 /portato/gui/windows/main.py | |
parent | e87c645c65d1735716fa4832cec910feb82d92cc (diff) | |
download | portato-1aaa1b04303219e7e4624a98bc8c42ce6dbff2e5.tar.gz portato-1aaa1b04303219e7e4624a98bc8c42ce6dbff2e5.tar.bz2 portato-1aaa1b04303219e7e4624a98bc8c42ce6dbff2e5.zip |
Make the queue's update_world set-sensitive too
Diffstat (limited to 'portato/gui/windows/main.py')
-rw-r--r-- | portato/gui/windows/main.py | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/portato/gui/windows/main.py b/portato/gui/windows/main.py index 5f270b9..a68fe17 100644 --- a/portato/gui/windows/main.py +++ b/portato/gui/windows/main.py @@ -1394,7 +1394,7 @@ class MainWindow (Window): elif self.queueTree.is_in_unmerge(iter): self.queue.unmerge(force = True) else: - self.queue.update_world(force=True, newuse = self.cfg.get_boolean("newuse"), deep = self.cfg.get_boolean("deep")) + self.queue.update_world(sets = self.updateSets, force=True, newuse = self.cfg.get_boolean("newuse"), deep = self.cfg.get_boolean("deep")) return True @@ -1420,13 +1420,13 @@ class MainWindow (Window): watch = gtk.gdk.Cursor(gtk.gdk.WATCH) self.window.window.set_cursor(watch) try: - sets = ("world", "system") # default + self.updateSets = ("world", "system") # default if system.has_set_support(): confsets = [x.strip() for x in self.cfg.get("updatesets").split(",")] syssets = system.get_sets() - sets = [s for s in confsets if s in syssets] + self.updateSets = [s for s in confsets if s in syssets] - updating = system.update_world(sets = sets, newuse = self.cfg.get_boolean("newuse"), deep = self.cfg.get_boolean("deep")) + updating = system.update_world(sets = self.updateSets, newuse = self.cfg.get_boolean("newuse"), deep = self.cfg.get_boolean("deep")) debug("updating list: %s --> length: %s", [(x.get_cpv(), y.get_cpv()) for x,y in updating], len(updating)) gobject.idle_add(cb_idle_append, updating) finally: |