make widgets insensitive in history window where there is no jid selected. Fixes #4553
This commit is contained in:
parent
200a29e06c
commit
d8c9aa0c5a
|
@ -118,6 +118,8 @@ class HistoryWindow:
|
||||||
|
|
||||||
if jid:
|
if jid:
|
||||||
self.jid_entry.set_text(jid)
|
self.jid_entry.set_text(jid)
|
||||||
|
else:
|
||||||
|
self._load_history(None)
|
||||||
|
|
||||||
gtkgui_helpers.resize_window(self.window,
|
gtkgui_helpers.resize_window(self.window,
|
||||||
gajim.config.get('history_window_width'),
|
gajim.config.get('history_window_width'),
|
||||||
|
|
Loading…
Reference in New Issue