aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChristian Persch <chpe@cvs.gnome.org>2005-11-29 23:30:36 +0800
committerChristian Persch <chpe@src.gnome.org>2005-11-29 23:30:36 +0800
commitff271bce34424709329634ded28e33117dbb2782 (patch)
tree61eeb61a9b76452eb3b34c95dfafdb152903f8db
parent3a78991995ffbd980f1520a4c666929a7ed8b19c (diff)
downloadgsoc2013-epiphany-ff271bce34424709329634ded28e33117dbb2782.tar
gsoc2013-epiphany-ff271bce34424709329634ded28e33117dbb2782.tar.gz
gsoc2013-epiphany-ff271bce34424709329634ded28e33117dbb2782.tar.bz2
gsoc2013-epiphany-ff271bce34424709329634ded28e33117dbb2782.tar.lz
gsoc2013-epiphany-ff271bce34424709329634ded28e33117dbb2782.tar.xz
gsoc2013-epiphany-ff271bce34424709329634ded28e33117dbb2782.tar.zst
gsoc2013-epiphany-ff271bce34424709329634ded28e33117dbb2782.zip
Fix transposed arguments.
2005-11-29 Christian Persch <chpe@cvs.gnome.org> * src/pdm-dialog.c: (pdm_dialog_cookie_scroll_to): Fix transposed arguments.
-rw-r--r--ChangeLog6
-rwxr-xr-xsrc/pdm-dialog.c2
2 files changed, 7 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index d30bc55a0..f80c4da13 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -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);
}