diff options
author | Necoro <> | 2008-01-23 23:12:52 +0000 |
---|---|---|
committer | Necoro <> | 2008-01-23 23:12:52 +0000 |
commit | fceb850b55ddf4109905ec939f1e8d06ee651f92 (patch) | |
tree | 1772b93bfad9ad3d62448d7ac91ddb725ae5815c /portato/gui/gtk | |
parent | c2ef204f52a76f529d7ce17d9eb94077a2e15467 (diff) | |
download | portato-fceb850b55ddf4109905ec939f1e8d06ee651f92.tar.gz portato-fceb850b55ddf4109905ec939f1e8d06ee651f92.tar.bz2 portato-fceb850b55ddf4109905ec939f1e8d06ee651f92.zip |
r707@Devoty: necoro | 2008-01-24 00:00:22 +0100
small patch for get_actual_use_flag taking into account that a package might not be in system anymore
r708@Devoty: necoro | 2008-01-24 00:11:23 +0100
EmergeQueue.is_empty() now honors all queues
Diffstat (limited to '')
-rw-r--r-- | portato/gui/gtk/windows.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/portato/gui/gtk/windows.py b/portato/gui/gtk/windows.py index 1571fc2..bdd5bfb 100644 --- a/portato/gui/gtk/windows.py +++ b/portato/gui/gtk/windows.py @@ -1651,7 +1651,7 @@ class MainWindow (Window): def cb_delete (self, *args): """Looks whether we really want to quit.""" - self.__save_queue = True + self.__save_queue = False if not self.queue.is_empty(): ret = queue_not_empty_dialog() |