aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-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);
}