diff options
author | Tom Tryfonidis <tomtryf@gmail.com> | 2011-11-30 04:14:47 +0800 |
---|---|---|
committer | Xan Lopez <xan@igalia.com> | 2011-12-01 16:29:50 +0800 |
commit | 9a6c740d24b1d4a7deb846d0a1548c5419e0080e (patch) | |
tree | b89c80402a7de47a5872dbcd69218cede139a4b7 /embed/ephy-request-about.c | |
parent | 901c1cc5fa13111f5593ed6f3ab14ea3654b3fdd (diff) | |
download | gsoc2013-epiphany-9a6c740d24b1d4a7deb846d0a1548c5419e0080e.tar.gz gsoc2013-epiphany-9a6c740d24b1d4a7deb846d0a1548c5419e0080e.tar.zst gsoc2013-epiphany-9a6c740d24b1d4a7deb846d0a1548c5419e0080e.zip |
Redesign of about:pages
The patch changes the design of about:plugins/memory pages making them
similar to about:applications.
https://bugzilla.gnome.org/show_bug.cgi?id=665136
Diffstat (limited to 'embed/ephy-request-about.c')
-rw-r--r-- | embed/ephy-request-about.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/embed/ephy-request-about.c b/embed/ephy-request-about.c index 0256c8da3..e239c1123 100644 --- a/embed/ephy-request-about.c +++ b/embed/ephy-request-about.c @@ -145,7 +145,8 @@ ephy_request_about_send (SoupRequest *request, "<style type=\"text/css\">%s</style></head><body>", _("Memory usage"), about->priv->css_style); - + + g_string_append_printf (data_str, "<h1>%s</h1>", _("Memory usage")); g_string_append (data_str, memory); g_free (memory); } |