aboutsummaryrefslogtreecommitdiffstats
path: root/src/empathy-chat-window.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/empathy-chat-window.c')
-rw-r--r--src/empathy-chat-window.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/empathy-chat-window.c b/src/empathy-chat-window.c
index f80223cc8..43bb74896 100644
--- a/src/empathy-chat-window.c
+++ b/src/empathy-chat-window.c
@@ -108,6 +108,7 @@ typedef struct {
GtkAction *menu_tabs_right;
GtkAction *menu_tabs_detach;
+ /* Last user action time we acted upon to show a tab */
guint32 x_user_action_time;
} EmpathyChatWindowPriv;
@@ -2311,8 +2312,8 @@ empathy_chat_window_present_chat (EmpathyChat *chat,
priv = GET_PRIV (window);
/* Don't present or switch tab if the action was earlier then the
- last actions X time, accounting for overflow and the first ever
- presentation */
+ * last actions X time, accounting for overflow and the first ever
+ * presentation */
if (priv->x_user_action_time != 0
&& X_EARLIER_OR_EQL (x_timestamp, priv->x_user_action_time))