Merge lp:~markellmtthw/footnote/fix-HintedEntry into lp:footnote

Proposed by Matthew Markell
Status: Merged
Merge reported by: Tom Beckmann
Merged at revision: not available
Proposed branch: lp:~markellmtthw/footnote/fix-HintedEntry
Merge into: lp:footnote
Diff against target: 22 lines (+3/-2)
1 file modified
src/Widgets/TaggingArea.vala (+3/-2)
To merge this branch: bzr merge lp:~markellmtthw/footnote/fix-HintedEntry
Reviewer Review Type Date Requested Status
elementary Apps team Pending
Review via email: mp+89561@code.launchpad.net
To post a comment you must log in.

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
1=== modified file 'src/Widgets/TaggingArea.vala'
2--- src/Widgets/TaggingArea.vala 2012-01-21 01:59:44 +0000
3+++ src/Widgets/TaggingArea.vala 2012-01-22 02:37:23 +0000
4@@ -94,7 +94,7 @@
5 }
6
7 public ArrayList<Tag> tags { get; private set; }
8- public Granite.Widgets.HintedEntry add_tag_entry { get; private set; }
9+ public Gtk.Entry add_tag_entry { get; private set; }
10
11 private FootnoteApp app;
12 private Note noteparent;
13@@ -109,7 +109,8 @@
14
15 tag_box = new HBox (false, 0);
16
17- add_tag_entry = new Granite.Widgets.HintedEntry (_("Add Tag..."));
18+ add_tag_entry = new Gtk.Entry ();
19+ add_tag_entry.placeholder_text = ("Add tag...");
20 add_tag_entry.width_chars = 10;
21
22 add_tag_entry.key_press_event.connect ( (event)=> {

Subscribers

People subscribed via source and target branches