summaryrefslogtreecommitdiff
path: root/UpdateManager
diff options
context:
space:
mode:
authorMichael Vogt <michael.vogt@ubuntu.com>2006-01-18 19:29:58 +0100
committerMichael Vogt <michael.vogt@ubuntu.com>2006-01-18 19:29:58 +0100
commit38055c212f60390a8e0376cd9991a76d6da6814d (patch)
tree4487bee1227cf8a9818e063a5f11b4da091ba7d6 /UpdateManager
parentf10aaa0dc42d4f0f20154289a515c42656df45ed (diff)
downloadpython-apt-38055c212f60390a8e0376cd9991a76d6da6814d.tar.gz
* clear desc_textview and changes_textview if no items are available in the list anymore
Diffstat (limited to 'UpdateManager')
-rw-r--r--UpdateManager/UpdateManager.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/UpdateManager/UpdateManager.py b/UpdateManager/UpdateManager.py
index f6e45c65..c16f1bb6 100644
--- a/UpdateManager/UpdateManager.py
+++ b/UpdateManager/UpdateManager.py
@@ -668,6 +668,8 @@ class UpdateManager(SimpleGladeApp):
self.store.append([False, _("Your system is up-to-date!"), None, None, None, None, None])
# make sure no install is possible
self.button_install.set_sensitive(False)
+ self.textview_changes.get_buffer().set_text("")
+ self.textview_descr.get_buffer().set_text("")
else:
self.cb.set_visible(True)
self.treeview_update.set_headers_visible(False)