diff options
author | Matthias Clasen <matthiasc@src.gnome.org> | 2004-01-31 21:42:28 +0000 |
---|---|---|
committer | Matthias Clasen <matthiasc@src.gnome.org> | 2004-01-31 21:42:28 +0000 |
commit | 7139efeeb180622a6e8a11ec2bd1d0e4c5eee7a6 (patch) | |
tree | 44f05e44c0204fa9cb972e470343527b2935e3ef /gtk/gtktreeviewcolumn.c | |
parent | 707db5e7b2d92608c91b8d3fc561d10312600c31 (diff) | |
download | gdk-pixbuf-7139efeeb180622a6e8a11ec2bd1d0e4c5eee7a6.tar.gz |
Correct the documentation for new_order. (#124790, Tim-Philipp Müller)
* gtk/gtktreemodel.c (gtk_tree_model_rows_reordered): Correct
the documentation for new_order. (#124790, Tim-Philipp Müller)
* gtk/gtktreeviewcolumn.c (gtk_tree_view_column_set_fixed_width):
Reset use_resized_width when setting fixed_width. (#108612,
Felipe Heidrich)
Diffstat (limited to 'gtk/gtktreeviewcolumn.c')
-rw-r--r-- | gtk/gtktreeviewcolumn.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gtk/gtktreeviewcolumn.c b/gtk/gtktreeviewcolumn.c index 15dab9faa..222c6a46b 100644 --- a/gtk/gtktreeviewcolumn.c +++ b/gtk/gtktreeviewcolumn.c @@ -1751,7 +1751,7 @@ gtk_tree_view_column_get_visible (GtkTreeViewColumn *tree_column) * @resizable: %TRUE, if the column can be resized * * If @resizable is %TRUE, then the user can explicitly resize the column by - * grabbing the outer edge of the column button. If resizable is TRUE and + * grabbing the outer edge of the column button. If resizable is %TRUE and * sizing mode of the column is #GTK_TREE_VIEW_COLUMN_AUTOSIZE, then the sizing * mode is changed to #GTK_TREE_VIEW_COLUMN_GROW_ONLY. **/ @@ -1880,6 +1880,7 @@ gtk_tree_view_column_set_fixed_width (GtkTreeViewColumn *tree_column, g_return_if_fail (fixed_width > 0); tree_column->fixed_width = fixed_width; + tree_column->use_resized_width = FALSE; if (tree_column->tree_view && GTK_WIDGET_REALIZED (tree_column->tree_view) && |