diff options
author | Christopher James Lahey <clahey@helixcode.com> | 2000-06-02 12:46:04 +0800 |
---|---|---|
committer | Chris Lahey <clahey@src.gnome.org> | 2000-06-02 12:46:04 +0800 |
commit | bed151743070dbe3aa3a403ccec00a24b587f644 (patch) | |
tree | 8954f4c7283a58d5fc48e6b6cd5e7ba740fcb757 /addressbook/gui/widgets/e-minicard-view.c | |
parent | b4b0fc5e23f52330b241e31981ed1a1483f6191a (diff) | |
download | gsoc2013-evolution-bed151743070dbe3aa3a403ccec00a24b587f644.tar.gz gsoc2013-evolution-bed151743070dbe3aa3a403ccec00a24b587f644.tar.zst gsoc2013-evolution-bed151743070dbe3aa3a403ccec00a24b587f644.zip |
Made double click only work on the first button.
2000-06-02 Christopher James Lahey <clahey@helixcode.com>
* gui/minicard/e-minicard-view.c, gui/minicard/e-minicard.c: Made
double click only work on the first button.
svn path=/trunk/; revision=3378
Diffstat (limited to 'addressbook/gui/widgets/e-minicard-view.c')
-rw-r--r-- | addressbook/gui/widgets/e-minicard-view.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/addressbook/gui/widgets/e-minicard-view.c b/addressbook/gui/widgets/e-minicard-view.c index 2243f91b80..545bcc061f 100644 --- a/addressbook/gui/widgets/e-minicard-view.c +++ b/addressbook/gui/widgets/e-minicard-view.c @@ -283,6 +283,7 @@ e_minicard_view_event (GnomeCanvasItem *item, GdkEvent *event) switch( event->type ) { case GDK_2BUTTON_PRESS: + if (((GdkEventButton *)event)->button == 1) { gint result; ECard *card; |