aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDavid Bordoley <bordoley@msu.edu>2004-02-05 02:51:47 +0800
committerDave Bordoley <Bordoley@src.gnome.org>2004-02-05 02:51:47 +0800
commit065939900815a23c14516b588056a171b43295d7 (patch)
tree237626434cd112449bfa97ea5ae27c186e91b7fb
parentc9efe21b04fe200299f796b83c4ef2fbe0f0547c (diff)
downloadgsoc2013-epiphany-065939900815a23c14516b588056a171b43295d7.tar
gsoc2013-epiphany-065939900815a23c14516b588056a171b43295d7.tar.gz
gsoc2013-epiphany-065939900815a23c14516b588056a171b43295d7.tar.bz2
gsoc2013-epiphany-065939900815a23c14516b588056a171b43295d7.tar.lz
gsoc2013-epiphany-065939900815a23c14516b588056a171b43295d7.tar.xz
gsoc2013-epiphany-065939900815a23c14516b588056a171b43295d7.tar.zst
gsoc2013-epiphany-065939900815a23c14516b588056a171b43295d7.zip
Set a default height/width for the dialog.
2004-02-04 David Bordoley <bordoley@msu.edu> * src/ephy-encoding-dialog.c: (ephy_encoding_dialog_new): Set a default height/width for the dialog.
-rw-r--r--ChangeLog6
-rw-r--r--src/ephy-encoding-dialog.c2
2 files changed, 8 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index 58f8e466e..ca7e51f4f 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2004-02-04 David Bordoley <bordoley@msu.edu>
+
+ * src/ephy-encoding-dialog.c: (ephy_encoding_dialog_new):
+
+ Set a default height/width for the dialog.
+
2004-02-04 Biggest Flake Ever <flake@whataflake.com>
David Bordoley <bordoley@msu.edu>
diff --git a/src/ephy-encoding-dialog.c b/src/ephy-encoding-dialog.c
index 69ccf13a1..3365fa5af 100644
--- a/src/ephy-encoding-dialog.c
+++ b/src/ephy-encoding-dialog.c
@@ -404,5 +404,7 @@ ephy_encoding_dialog_new (EphyWindow *parent)
{
return g_object_new (EPHY_TYPE_ENCODING_DIALOG,
"parent-window", parent,
+ "default-width", 350,
+ "default-height", 420,
NULL);
}