diff options
-rw-r--r-- | widgets/text/e-entry.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/widgets/text/e-entry.c b/widgets/text/e-entry.c index 6301672124..6c060244f5 100644 --- a/widgets/text/e-entry.c +++ b/widgets/text/e-entry.c @@ -477,6 +477,11 @@ e_entry_show_popup (EEntry *entry, gboolean visible) if (pop == NULL) return; + /* The async query can give us a result after the focus was lost by the + widget. In that case, we don't want to show the pop-up. */ + if (! GTK_WIDGET_HAS_FOCUS (entry->canvas)) + return; + if (visible) { GtkAllocation *dim = &(GTK_WIDGET (entry)->allocation); gint x, y, xo, yo, fudge; |