From 15a366dbf05d1348081bb2d8f2e977cbf648e9cf Mon Sep 17 00:00:00 2001 From: lilia Date: Tue, 15 Sep 2015 20:41:48 -0700 Subject: [PATCH] Opening a conversation should focus the window Previously, this function might open the conversation but not show the window, if it exists but wasn't on top. // FREEBIE --- js/panel_controller.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/js/panel_controller.js b/js/panel_controller.js index 7f9c878fb..3b49b2292 100644 --- a/js/panel_controller.js +++ b/js/panel_controller.js @@ -168,8 +168,8 @@ appWindow.contentWindow.openConversation(conversation); } else { open = conversation; - openInbox(); } + openInbox(); }; window.getOpenConversation = function() { var o = open;