diff options
author | TingPing <tngpng@gmail.com> | 2013-03-04 12:02:55 -0500 |
---|---|---|
committer | TingPing <tngpng@gmail.com> | 2013-03-04 12:02:55 -0500 |
commit | 84f19881a3c313c5c4ef7045988aacc8a6f9306d (patch) | |
tree | 574a29bc2086e42e6a9153f54c87cb957be179e1 /src/common | |
parent | 6ff9fb596e630bb22cf20f424daa5ce615790112 (diff) |
fix query -nofocus
Diffstat (limited to 'src/common')
-rw-r--r-- | src/common/outbound.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/common/outbound.c b/src/common/outbound.c index c146c2ac..0c405343 100644 --- a/src/common/outbound.c +++ b/src/common/outbound.c @@ -2873,7 +2873,7 @@ open_query (server *serv, char *nick, gboolean focus_existing) sess = find_dialog (serv, nick); if (!sess) - new_ircwindow (serv, nick, SESS_DIALOG, 1); + new_ircwindow (serv, nick, SESS_DIALOG, focus_existing); else if (focus_existing) fe_ctrl_gui (sess, 2, 0); /* bring-to-front */ } |