Welcome to mirror list, hosted at ThFree Co, Russian Federation.

dev.gajim.org/gajim/gajim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorYann Leboulanger <asterix@lagaule.org>2008-12-05 13:38:44 +0300
committerYann Leboulanger <asterix@lagaule.org>2008-12-05 13:38:44 +0300
commitd8c9aa0c5a2b835703b0224af7f2d232624bc61a (patch)
tree97c203e7e05e36fa9cc2e519afa33212ff4d1bb0
parent200a29e06c263673bec596e0b73cfa785967c251 (diff)
make widgets insensitive in history window where there is no jid selected. Fixes #4553
-rw-r--r--src/history_window.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/history_window.py b/src/history_window.py
index 90a412126..6f700b062 100644
--- a/src/history_window.py
+++ b/src/history_window.py
@@ -118,6 +118,8 @@ class HistoryWindow:
if jid:
self.jid_entry.set_text(jid)
+ else:
+ self._load_history(None)
gtkgui_helpers.resize_window(self.window,
gajim.config.get('history_window_width'),