From b32122b604e6e00e0f470604ccb2f2cd26a373b9 Mon Sep 17 00:00:00 2001 From: Christian Dywan Date: Fri, 17 Jul 2009 22:55:41 +0200 Subject: [PATCH] Thaw the location action when setting history in a new window Full history completion was missing because we set the model in new windows but failed to setup the filter and sort models properly. --- midori/midori-locationaction.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/midori/midori-locationaction.c b/midori/midori-locationaction.c index 886a0fa1..3d630fd1 100644 --- a/midori/midori-locationaction.c +++ b/midori/midori-locationaction.c @@ -460,7 +460,8 @@ midori_location_action_set_property (GObject* object, if (model != NULL) { katze_object_assign (location_action->model, g_object_ref (model)); - midori_location_action_set_model (location_action, model); + location_action->filter_model = NULL; + midori_location_action_thaw (location_action); } else {