diff options
author | Gustavo Noronha Silva <gustavo.noronha@collabora.co.uk> | 2010-08-11 20:44:04 +0800 |
---|---|---|
committer | Diego Escalante Urrelo <descalante@igalia.com> | 2010-08-31 04:43:08 +0800 |
commit | afcd1530536d07adce3283aa7393e498853b74c8 (patch) | |
tree | fbf6eada15a451d95da433bb7c3a1a3706bc06fc | |
parent | de93b5c7c86a5fadd811594fe71ba62cdbccb214 (diff) | |
download | gsoc2013-epiphany-afcd1530536d07adce3283aa7393e498853b74c8.tar gsoc2013-epiphany-afcd1530536d07adce3283aa7393e498853b74c8.tar.gz gsoc2013-epiphany-afcd1530536d07adce3283aa7393e498853b74c8.tar.bz2 gsoc2013-epiphany-afcd1530536d07adce3283aa7393e498853b74c8.tar.lz gsoc2013-epiphany-afcd1530536d07adce3283aa7393e498853b74c8.tar.xz gsoc2013-epiphany-afcd1530536d07adce3283aa7393e498853b74c8.tar.zst gsoc2013-epiphany-afcd1530536d07adce3283aa7393e498853b74c8.zip |
Make the inspector window bigger
Its current size is not very helpful, and causes a small part of the
inspector to be cut off horizontally.
Bug #626625
-rw-r--r-- | embed/ephy-embed.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/embed/ephy-embed.c b/embed/ephy-embed.c index 575382051..dab61c12e 100644 --- a/embed/ephy-embed.c +++ b/embed/ephy-embed.c @@ -1054,7 +1054,7 @@ ephy_embed_constructed (GObject *object) gtk_window_set_title (GTK_WINDOW (embed->priv->inspector_window), _("Web Inspector")); gtk_window_set_default_size (GTK_WINDOW (embed->priv->inspector_window), - 600, 400); + 800, 600); g_signal_connect (embed->priv->inspector_window, "delete-event", G_CALLBACK (gtk_widget_hide_on_delete), |