diff options
-rw-r--r-- | ChangeLog | 6 | ||||
-rw-r--r-- | src/ephy-encoding-dialog.c | 2 |
2 files changed, 8 insertions, 0 deletions
@@ -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); } |