[gimp/tito: 10/15] app: when hiding the action search action list, unselect any selection
- From: Jehan Pagès <jehanp src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [gimp/tito: 10/15] app: when hiding the action search action list, unselect any selection
- Date: Sun, 1 Dec 2013 22:40:19 +0000 (UTC)
commit 2d3188b0d59606e60a6803de40644a0792d333a5
Author: Jehan <jehan girinstud io>
Date: Sat Nov 30 15:34:44 2013 +1300
app: when hiding the action search action list, unselect any selection
app/dialogs/action-search-dialog.c | 23 ++++++++++++++++++++++-
1 files changed, 22 insertions(+), 1 deletions(-)
---
diff --git a/app/dialogs/action-search-dialog.c b/app/dialogs/action-search-dialog.c
index e20dde5..956f861 100644
--- a/app/dialogs/action-search-dialog.c
+++ b/app/dialogs/action-search-dialog.c
@@ -208,6 +208,23 @@ key_released (GtkWidget *widget,
}
else
{
+ GtkTreeSelection *selection;
+ GtkTreeModel *model;
+ GtkTreeIter iter;
+
+ selection = gtk_tree_view_get_selection (GTK_TREE_VIEW (private->results_list));
+ gtk_tree_selection_set_mode (selection, GTK_SELECTION_SINGLE);
+
+ if (gtk_tree_selection_get_selected (selection, &model, &iter))
+ {
+ GtkTreePath *path;
+
+ path = gtk_tree_model_get_path (model, &iter);
+ gtk_tree_selection_unselect_path (selection, path);
+
+ gtk_tree_path_free (path);
+ }
+
gtk_widget_hide (private->list_view);
gtk_window_resize (GTK_WINDOW (private->dialog),
width, 1);
@@ -237,6 +254,7 @@ result_selected (GtkWidget *widget,
}
case GDK_Up:
{
+ gboolean event_processed = FALSE;
GtkTreeSelection *selection;
GtkTreeModel *model;
GtkTreePath *path;
@@ -258,9 +276,12 @@ result_selected (GtkWidget *widget,
gtk_widget_grab_focus ((GTK_WIDGET (private->keyword_entry)));
gtk_editable_select_region (GTK_EDITABLE (private->keyword_entry), start_pos, end_pos);
- return TRUE;
+ event_processed = TRUE;
}
+ gtk_tree_path_free (path);
}
+
+ return event_processed;
}
case GDK_Down:
{
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]