Merge lp:~gue5t/midori/completion-escaping into lp:midori

Proposed by gue5t gue5t
Status: Merged
Approved by: Cris Dywan
Approved revision: 6744
Merged at revision: 6753
Proposed branch: lp:~gue5t/midori/completion-escaping
Merge into: lp:midori
Diff against target: 12 lines (+1/-1)
1 file modified
midori/midori-viewcompletion.vala (+1/-1)
To merge this branch: bzr merge lp:~gue5t/midori/completion-escaping
Reviewer Review Type Date Requested Status
Cris Dywan Approve
Review via email: mp+226608@code.launchpad.net

Commit message

Do not overescape page titles in view completion

Description of the change

See the bug for a description of the problem. I looked at other completion sources and don't believe they have similar issues.

To post a comment you must log in.
Revision history for this message
Cris Dywan (kalikiana) :
review: Approve

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
1=== modified file 'midori/midori-viewcompletion.vala'
2--- midori/midori-viewcompletion.vala 2014-04-07 21:54:48 +0000
3+++ midori/midori-viewcompletion.vala 2014-07-13 15:57:49 +0000
4@@ -72,7 +72,7 @@
5 Gdk.Pixbuf? icon = Midori.Paths.get_icon (uri, null);
6 /* FIXME: Theming? Win32? */
7 string background = "gray";
8- var suggestion = new Suggestion (uri, title, false, background, icon, this.position);
9+ var suggestion = new Suggestion (uri, title, true, background, icon, this.position);
10 suggestions.append (suggestion);
11
12 n++;

Subscribers

People subscribed via source and target branches

to all changes: