forked from AuroraMiddleware/gtk
Don't do anything beyond clearing to the background if there is no active
Sat Mar 13 21:47:47 2004 Matthias Clasen <maclas@gmx.de> * gtk/gtkcellview.c (gtk_cell_view_expose): Don't do anything beyond clearing to the background if there is no active row. (#137066, reported by Owen Taylor)
This commit is contained in:
parent
74fd8a025d
commit
b1b58fe3df
@ -1,3 +1,9 @@
|
||||
Sat Mar 13 21:47:47 2004 Matthias Clasen <maclas@gmx.de>
|
||||
|
||||
* gtk/gtkcellview.c (gtk_cell_view_expose): Don't do anything
|
||||
beyond clearing to the background if there is no active row.
|
||||
(#137066, reported by Owen Taylor)
|
||||
|
||||
Sat Mar 13 21:37:44 2004 Matthias Clasen <maclas@gmx.de>
|
||||
|
||||
* gtk/gtkcombobox.c (gtk_combo_box_list_key_press): Pop down the
|
||||
|
@ -1,3 +1,9 @@
|
||||
Sat Mar 13 21:47:47 2004 Matthias Clasen <maclas@gmx.de>
|
||||
|
||||
* gtk/gtkcellview.c (gtk_cell_view_expose): Don't do anything
|
||||
beyond clearing to the background if there is no active row.
|
||||
(#137066, reported by Owen Taylor)
|
||||
|
||||
Sat Mar 13 21:37:44 2004 Matthias Clasen <maclas@gmx.de>
|
||||
|
||||
* gtk/gtkcombobox.c (gtk_combo_box_list_key_press): Pop down the
|
||||
|
@ -1,3 +1,9 @@
|
||||
Sat Mar 13 21:47:47 2004 Matthias Clasen <maclas@gmx.de>
|
||||
|
||||
* gtk/gtkcellview.c (gtk_cell_view_expose): Don't do anything
|
||||
beyond clearing to the background if there is no active row.
|
||||
(#137066, reported by Owen Taylor)
|
||||
|
||||
Sat Mar 13 21:37:44 2004 Matthias Clasen <maclas@gmx.de>
|
||||
|
||||
* gtk/gtkcombobox.c (gtk_combo_box_list_key_press): Pop down the
|
||||
|
@ -1,3 +1,9 @@
|
||||
Sat Mar 13 21:47:47 2004 Matthias Clasen <maclas@gmx.de>
|
||||
|
||||
* gtk/gtkcellview.c (gtk_cell_view_expose): Don't do anything
|
||||
beyond clearing to the background if there is no active row.
|
||||
(#137066, reported by Owen Taylor)
|
||||
|
||||
Sat Mar 13 21:37:44 2004 Matthias Clasen <maclas@gmx.de>
|
||||
|
||||
* gtk/gtkcombobox.c (gtk_combo_box_list_key_press): Pop down the
|
||||
|
@ -1,3 +1,9 @@
|
||||
Sat Mar 13 21:47:47 2004 Matthias Clasen <maclas@gmx.de>
|
||||
|
||||
* gtk/gtkcellview.c (gtk_cell_view_expose): Don't do anything
|
||||
beyond clearing to the background if there is no active row.
|
||||
(#137066, reported by Owen Taylor)
|
||||
|
||||
Sat Mar 13 21:37:44 2004 Matthias Clasen <maclas@gmx.de>
|
||||
|
||||
* gtk/gtkcombobox.c (gtk_combo_box_list_key_press): Pop down the
|
||||
|
@ -437,8 +437,10 @@ gtk_cell_view_expose (GtkWidget *widget,
|
||||
g_object_unref (G_OBJECT (gc));
|
||||
}
|
||||
|
||||
/* set cell data (if applicable) */
|
||||
if (cellview->priv->displayed_row)
|
||||
if (!cellview->priv->displayed_row)
|
||||
return FALSE;
|
||||
|
||||
/* set cell data */
|
||||
gtk_cell_view_set_cell_data (cellview);
|
||||
|
||||
/* render cells */
|
||||
|
Loading…
Reference in New Issue
Block a user