mirror of
https://gitlab.gnome.org/GNOME/gtk.git
synced 2024-12-25 05:01:09 +00:00
temporarily set ->priv->edited_column to NULL. Pleas read the comment in
Wed Apr 24 17:34:16 2002 Kristian Rietveld <kris@gtk.org> * gtk/gtktreeview.c (gtk_tree_view_stop_editing): temporarily set ->priv->edited_column to NULL. Pleas read the comment in this function for an explanation (fixes #79632).
This commit is contained in:
parent
999748e922
commit
048ab22f7f
@ -1,3 +1,9 @@
|
||||
Wed Apr 24 17:34:16 2002 Kristian Rietveld <kris@gtk.org>
|
||||
|
||||
* gtk/gtktreeview.c (gtk_tree_view_stop_editing): temporarily set
|
||||
->priv->edited_column to NULL. Pleas read the comment in this
|
||||
function for an explanation (fixes #79632).
|
||||
|
||||
2002-04-23 Matthias Clasen <maclas@gmx.de>
|
||||
|
||||
* gtk/gtktextview.c (gtk_text_view_buffer_to_window_coords):
|
||||
|
@ -1,3 +1,9 @@
|
||||
Wed Apr 24 17:34:16 2002 Kristian Rietveld <kris@gtk.org>
|
||||
|
||||
* gtk/gtktreeview.c (gtk_tree_view_stop_editing): temporarily set
|
||||
->priv->edited_column to NULL. Pleas read the comment in this
|
||||
function for an explanation (fixes #79632).
|
||||
|
||||
2002-04-23 Matthias Clasen <maclas@gmx.de>
|
||||
|
||||
* gtk/gtktextview.c (gtk_text_view_buffer_to_window_coords):
|
||||
|
@ -1,3 +1,9 @@
|
||||
Wed Apr 24 17:34:16 2002 Kristian Rietveld <kris@gtk.org>
|
||||
|
||||
* gtk/gtktreeview.c (gtk_tree_view_stop_editing): temporarily set
|
||||
->priv->edited_column to NULL. Pleas read the comment in this
|
||||
function for an explanation (fixes #79632).
|
||||
|
||||
2002-04-23 Matthias Clasen <maclas@gmx.de>
|
||||
|
||||
* gtk/gtktextview.c (gtk_text_view_buffer_to_window_coords):
|
||||
|
@ -1,3 +1,9 @@
|
||||
Wed Apr 24 17:34:16 2002 Kristian Rietveld <kris@gtk.org>
|
||||
|
||||
* gtk/gtktreeview.c (gtk_tree_view_stop_editing): temporarily set
|
||||
->priv->edited_column to NULL. Pleas read the comment in this
|
||||
function for an explanation (fixes #79632).
|
||||
|
||||
2002-04-23 Matthias Clasen <maclas@gmx.de>
|
||||
|
||||
* gtk/gtktextview.c (gtk_text_view_buffer_to_window_coords):
|
||||
|
@ -1,3 +1,9 @@
|
||||
Wed Apr 24 17:34:16 2002 Kristian Rietveld <kris@gtk.org>
|
||||
|
||||
* gtk/gtktreeview.c (gtk_tree_view_stop_editing): temporarily set
|
||||
->priv->edited_column to NULL. Pleas read the comment in this
|
||||
function for an explanation (fixes #79632).
|
||||
|
||||
2002-04-23 Matthias Clasen <maclas@gmx.de>
|
||||
|
||||
* gtk/gtktextview.c (gtk_text_view_buffer_to_window_coords):
|
||||
|
@ -1,3 +1,9 @@
|
||||
Wed Apr 24 17:34:16 2002 Kristian Rietveld <kris@gtk.org>
|
||||
|
||||
* gtk/gtktreeview.c (gtk_tree_view_stop_editing): temporarily set
|
||||
->priv->edited_column to NULL. Pleas read the comment in this
|
||||
function for an explanation (fixes #79632).
|
||||
|
||||
2002-04-23 Matthias Clasen <maclas@gmx.de>
|
||||
|
||||
* gtk/gtktextview.c (gtk_text_view_buffer_to_window_coords):
|
||||
|
@ -9984,7 +9984,6 @@ gtk_tree_view_create_row_drag_icon (GtkTreeView *tree_view,
|
||||
&cell_area,
|
||||
&expose_area,
|
||||
0);
|
||||
|
||||
cell_offset += column->width;
|
||||
}
|
||||
|
||||
@ -10676,11 +10675,28 @@ static void
|
||||
gtk_tree_view_stop_editing (GtkTreeView *tree_view,
|
||||
gboolean cancel_editing)
|
||||
{
|
||||
GtkTreeViewColumn *column;
|
||||
|
||||
if (tree_view->priv->edited_column == NULL)
|
||||
return;
|
||||
|
||||
if (! cancel_editing)
|
||||
gtk_cell_editable_editing_done (tree_view->priv->edited_column->editable_widget);
|
||||
/**
|
||||
* This is very evil. We need to do this, because
|
||||
* gtk_cell_editable_editing_done may trigger gtk_tree_view_row_changed
|
||||
* later on. If gtk_tree_view_row_changed notices
|
||||
* tree_view->priv->edited_column != NULL, it'll call
|
||||
* gtk_tree_view_stop_editing again. Bad things will happen then.
|
||||
*
|
||||
* Please read that again if you intend to modify anything here.
|
||||
*/
|
||||
|
||||
gtk_cell_editable_remove_widget (tree_view->priv->edited_column->editable_widget);
|
||||
column = tree_view->priv->edited_column;
|
||||
tree_view->priv->edited_column = NULL;
|
||||
|
||||
if (! cancel_editing)
|
||||
gtk_cell_editable_editing_done (column->editable_widget);
|
||||
|
||||
tree_view->priv->edited_column = column;
|
||||
|
||||
gtk_cell_editable_remove_widget (column->editable_widget);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user