summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBastien Nocera <hadess@hadess.net>2022-05-03 17:09:22 +0200
committerBastien Nocera <hadess@hadess.net>2022-05-03 15:34:46 +0000
commite4fa7abaae4e5f3d113197c1416e696bcb9edcae (patch)
tree5ee9c062d2ca67680daab0cea7bb76a4c33ca113
parent147e8d20ed5dd96d8b34132f43b74cd824e37718 (diff)
downloadtotem-e4fa7abaae4e5f3d113197c1416e696bcb9edcae.tar.gz
grilo: Fix crash when scrolling for more content in some cases
When popping down the search entry, and scrolling down to activate the "load content" action, we would try and load more search results but we never really started a search, leading to a crash. Make sure that a search is only considered to be started when the search entry has been activated. Closes: https://bugzilla.redhat.com/show_bug.cgi?id=2079657 (cherry picked from commit 0f1022cff10589c7e2c6e355f48166b34e11a5e3)
-rw-r--r--src/totem-grilo.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/totem-grilo.c b/src/totem-grilo.c
index f07cf8d7a..981e07d72 100644
--- a/src/totem-grilo.c
+++ b/src/totem-grilo.c
@@ -1966,6 +1966,8 @@ search_mode_changed (GObject *gobject,
g_assert_not_reached ();
}
g_clear_pointer (&self->last_page, g_free);
+
+ self->in_search = search_mode;
} else {
GtkTreeModel *model;
const char *id = NULL;
@@ -2001,7 +2003,6 @@ search_mode_changed (GObject *gobject,
gtk_toggle_button_set_active (GTK_TOGGLE_BUTTON (self->search_hidden_button), TRUE);
}
- self->in_search = search_mode;
}
typedef struct {