aboutsummaryrefslogtreecommitdiffstats
path: root/addressbook
diff options
context:
space:
mode:
Diffstat (limited to 'addressbook')
-rw-r--r--addressbook/ChangeLog7
-rw-r--r--addressbook/gui/widgets/e-addressbook-view.c9
2 files changed, 7 insertions, 9 deletions
diff --git a/addressbook/ChangeLog b/addressbook/ChangeLog
index 5fc474210c..f374bcf76a 100644
--- a/addressbook/ChangeLog
+++ b/addressbook/ChangeLog
@@ -1,3 +1,10 @@
+2002-11-28 Chris Toshok <toshok@ximian.com>
+
+ * gui/widgets/e-addressbook-view.c (create_minicard_view): remove
+ the button_press_event handler (that did nothing). this makes it
+ so button presses actually get to the canvas (and therefore we can
+ now drag the lines in the reflow widget).
+
2002-11-26 Chris Toshok <toshok@ximian.com>
* gui/contact-editor/e-contact-quick-add.c: add include for
diff --git a/addressbook/gui/widgets/e-addressbook-view.c b/addressbook/gui/widgets/e-addressbook-view.c
index d85df8a35d..bedb5a685d 100644
--- a/addressbook/gui/widgets/e-addressbook-view.c
+++ b/addressbook/gui/widgets/e-addressbook-view.c
@@ -1088,12 +1088,6 @@ minicard_selection_change (EMinicardViewWidget *widget, EAddressbookView *view)
}
static void
-minicard_button_press (GtkWidget *widget, GdkEventButton *event, EAddressbookView *view)
-{
- d(g_print ("Button %d pressed with event type %d\n", event->button, event->type));
-}
-
-static void
minicard_right_click (EMinicardView *minicard_view_item, GdkEvent *event, EAddressbookView *view)
{
do_popup_menu(view, event);
@@ -1122,9 +1116,6 @@ create_minicard_view (EAddressbookView *view)
g_signal_connect(minicard_view, "selection_change",
G_CALLBACK(minicard_selection_change), view);
- g_signal_connect(minicard_view, "button_press_event",
- G_CALLBACK(minicard_button_press), view);
-
g_signal_connect(minicard_view, "right_click",
G_CALLBACK(minicard_right_click), view);