diff options
author | Matthias Clasen <mclasen@redhat.com> | 2018-01-01 23:08:46 -0500 |
---|---|---|
committer | Matthias Clasen <mclasen@redhat.com> | 2018-01-16 14:14:10 -0500 |
commit | 9ceafd7c38b34dadad12cfd3b8e6177c6dc15d19 (patch) | |
tree | c6940854ce91279788fe8dcbd4d3289cce1e2149 /gtk/gtkentryprivate.h | |
parent | a2a80f8a15704f9005765597338073d13a718b50 (diff) | |
download | gtk+-9ceafd7c38b34dadad12cfd3b8e6177c6dc15d19.tar.gz |
entry completion: Drop initial selection avoidance
This is a minor thing, and it is hard to recreate
with event controllers, so drop it for now.
Diffstat (limited to 'gtk/gtkentryprivate.h')
-rw-r--r-- | gtk/gtkentryprivate.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gtk/gtkentryprivate.h b/gtk/gtkentryprivate.h index 08fab2d42b..f4be18d0e6 100644 --- a/gtk/gtkentryprivate.h +++ b/gtk/gtkentryprivate.h @@ -24,6 +24,7 @@ #include <gtk/gtkentrycompletion.h> #include <gtk/gtkentry.h> #include <gtk/gtkspinbutton.h> +#include <gtk/gtkeventcontrollermotion.h> G_BEGIN_DECLS @@ -59,7 +60,6 @@ struct _GtkEntryCompletionPrivate gint current_selected; guint first_sel_changed : 1; - guint ignore_enter : 1; guint has_completion : 1; guint inline_completion : 1; guint popup_completion : 1; |