aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJonny Lamb <jonny.lamb@collabora.co.uk>2009-04-23 18:55:44 +0800
committerJonny Lamb <jonny.lamb@collabora.co.uk>2009-04-24 08:52:50 +0800
commitb096d874c2ffc78d38849cc5a8d98bcdf98cc2ec (patch)
tree58b6e410adf965195369106cdf37eaaf5c29c119
parentece1e3733ab9e68a2f630801cba420521217eebb (diff)
downloadgsoc2013-empathy-b096d874c2ffc78d38849cc5a8d98bcdf98cc2ec.tar
gsoc2013-empathy-b096d874c2ffc78d38849cc5a8d98bcdf98cc2ec.tar.gz
gsoc2013-empathy-b096d874c2ffc78d38849cc5a8d98bcdf98cc2ec.tar.bz2
gsoc2013-empathy-b096d874c2ffc78d38849cc5a8d98bcdf98cc2ec.tar.lz
gsoc2013-empathy-b096d874c2ffc78d38849cc5a8d98bcdf98cc2ec.tar.xz
gsoc2013-empathy-b096d874c2ffc78d38849cc5a8d98bcdf98cc2ec.tar.zst
gsoc2013-empathy-b096d874c2ffc78d38849cc5a8d98bcdf98cc2ec.zip
Add more comments to debug_dialog_press_event_cb.
Signed-off-by: Jonny Lamb <jonny.lamb@collabora.co.uk>
-rw-r--r--src/empathy-debug-dialog.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/empathy-debug-dialog.c b/src/empathy-debug-dialog.c
index 8aaf42d61..15864b739 100644
--- a/src/empathy-debug-dialog.c
+++ b/src/empathy-debug-dialog.c
@@ -491,8 +491,11 @@ debug_dialog_button_press_event_cb (GtkTreeView *view,
GdkEventButton *event,
gpointer user_data)
{
+ /* A mouse button was pressed on the tree view. */
+
if (event->button == 3)
{
+ /* The tree view was right-clicked. (3 == third mouse button) */
MenuPopupData *data;
data = g_slice_new0 (MenuPopupData);
data->debug_dialog = user_data;