Merge lp:~voldyman/granite/abt-dialog-spacefix into lp:~elementary-pantheon/granite/granite

Proposed by David Gomes
Status: Merged
Merged at revision: 363
Proposed branch: lp:~voldyman/granite/abt-dialog-spacefix
Merge into: lp:~elementary-pantheon/granite/granite
Diff against target: 24 lines (+3/-3)
1 file modified
lib/GtkPatch/AboutDialog.vala (+3/-3)
To merge this branch: bzr merge lp:~voldyman/granite/abt-dialog-spacefix
Reviewer Review Type Date Requested Status
David Gomes (community) Approve
Review via email: mp+121847@code.launchpad.net

Description of the change

Fixes whitespace on Granite.

To post a comment you must log in.
Revision history for this message
David Gomes (davidgomes) wrote :

Great fixes, the About Dialog looks much sexier now!

review: Approve

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
1=== modified file 'lib/GtkPatch/AboutDialog.vala'
2--- lib/GtkPatch/AboutDialog.vala 2012-08-24 00:41:31 +0000
3+++ lib/GtkPatch/AboutDialog.vala 2012-08-29 12:24:35 +0000
4@@ -172,7 +172,7 @@
5 translators_label.set_text("");
6 }
7 else {
8- translators_label.set_markup("<span size=\"small\">" + _("Translated by ") + _translator_credits.replace("&", "&amp;") + "</span>\n");
9+ translators_label.set_markup("<span size=\"small\">" + _("Translated by ") + _translator_credits.replace("&", "&amp;") + "</span>");
10 translators_label.show();
11 }
12 }
13@@ -392,9 +392,9 @@
14
15 }
16 if (email == "")
17- text += "<u>%s</u>\n".printf (name);
18+ text += "<u>%s</u>\n".printf (name.strip ());
19 else
20- text += "<a href=\"%s\" title=\"%s\">%s</a>\n".printf (email,email,name);
21+ text += "<a href=\"mailto:%s\" title=\"%s\">%s</a>\n".printf (email,email,name.strip ());
22 email = ""; name =""; email_started=false;
23 }
24 text += "</span>";

Subscribers

People subscribed via source and target branches