diff options
author | Jon Trowbridge <trow@ximian.com> | 2001-10-19 01:37:59 +0800 |
---|---|---|
committer | Jon Trowbridge <trow@src.gnome.org> | 2001-10-19 01:37:59 +0800 |
commit | 1a671a33661fe4f02d0a004e4cf7ce2a1dfc0c63 (patch) | |
tree | cbab868fe4511dbc28cb007b96e56fb2136a10a4 | |
parent | 35c88458073d8b30d07281e2bca092e027fc58c8 (diff) | |
download | gsoc2013-evolution-1a671a33661fe4f02d0a004e4cf7ce2a1dfc0c63.tar.gz gsoc2013-evolution-1a671a33661fe4f02d0a004e4cf7ce2a1dfc0c63.tar.zst gsoc2013-evolution-1a671a33661fe4f02d0a004e4cf7ce2a1dfc0c63.zip |
Lag our cardification on focus-out. This seems to help with the unintended
2001-10-18 Jon Trowbridge <trow@ximian.com>
* gui/component/select-names/e-select-names-manager.c
(focus_out_cb): Lag our cardification on focus-out. This seems to
help with the unintended cardifications that can result from the
weird focus-out/focus-in events that get generated when the popup
disappears.
* backend/ebook/e-card-compare.c: Removed some debug spew.
svn path=/trunk/; revision=13757
-rw-r--r-- | addressbook/ChangeLog | 10 | ||||
-rw-r--r-- | addressbook/backend/ebook/e-card-compare.c | 4 | ||||
-rw-r--r-- | addressbook/gui/component/select-names/e-select-names-manager.c | 2 |
3 files changed, 11 insertions, 5 deletions
diff --git a/addressbook/ChangeLog b/addressbook/ChangeLog index 6602cd9c1f..35c3c7bbac 100644 --- a/addressbook/ChangeLog +++ b/addressbook/ChangeLog @@ -1,3 +1,13 @@ +2001-10-18 Jon Trowbridge <trow@ximian.com> + + * gui/component/select-names/e-select-names-manager.c + (focus_out_cb): Lag our cardification on focus-out. This seems to + help with the unintended cardifications that can result from the + weird focus-out/focus-in events that get generated when the popup + disappears. + + * backend/ebook/e-card-compare.c: Removed some debug spew. + 2001-10-17 Chris Toshok <toshok@ximian.com> * gui/component/addressbook-config.c (addressbook_source_dialog): diff --git a/addressbook/backend/ebook/e-card-compare.c b/addressbook/backend/ebook/e-card-compare.c index d4ffa56dc7..7f0534e2c4 100644 --- a/addressbook/backend/ebook/e-card-compare.c +++ b/addressbook/backend/ebook/e-card-compare.c @@ -258,10 +258,6 @@ e_card_compare_name_to_string_full (ECard *card, const gchar *str, gboolean allo } } - if (match_type != E_CARD_MATCH_NONE) { - g_message ("Matched %s on %s", e_card_name_to_string (card->name), str); - } - if (matched_parts_out) *matched_parts_out = matched_parts; if (first_matched_part_out) diff --git a/addressbook/gui/component/select-names/e-select-names-manager.c b/addressbook/gui/component/select-names/e-select-names-manager.c index d392930570..d422265c02 100644 --- a/addressbook/gui/component/select-names/e-select-names-manager.c +++ b/addressbook/gui/component/select-names/e-select-names-manager.c @@ -442,7 +442,7 @@ focus_out_cb (GtkWidget *w, GdkEventFocus *ev, gpointer user_data) ESelectNamesManager *manager = E_SELECT_NAMES_MANAGER (gtk_object_get_data (GTK_OBJECT (entry), "select_names_manager")); if (!e_entry_completion_popup_is_visible (entry)) - e_select_names_model_cardify_all (model, manager->completion_book, 0); + e_select_names_model_cardify_all (model, manager->completion_book, 100); return FALSE; } |