diff options
-rw-r--r-- | ChangeLog | 6 | ||||
-rwxr-xr-x | src/pdm-dialog.c | 2 |
2 files changed, 7 insertions, 1 deletions
@@ -1,5 +1,11 @@ 2005-11-29 Christian Persch <chpe@cvs.gnome.org> + * src/pdm-dialog.c: (pdm_dialog_cookie_scroll_to): + + Fix transposed arguments. + +2005-11-29 Christian Persch <chpe@cvs.gnome.org> + * lib/ephy-string.c: (ephy_string_collate_key_for_domain): * lib/ephy-string.h: diff --git a/src/pdm-dialog.c b/src/pdm-dialog.c index 1da1448a6..98ed352e6 100755 --- a/src/pdm-dialog.c +++ b/src/pdm-dialog.c @@ -922,7 +922,7 @@ pdm_dialog_cookie_scroll_to (PdmActionInfo *info) path = gtk_tree_model_get_path (info->model, &iter); gtk_tree_view_scroll_to_cell (info->treeview, path, NULL, TRUE, - 0.0, 0.5); + 0.5, 0.0); gtk_tree_path_free (path); } |