Skip to content
This repository has been archived by the owner on Sep 18, 2018. It is now read-only.

Commit

Permalink
feat(Search): remove ellipsis in placeholder text
Browse files Browse the repository at this point in the history
  • Loading branch information
nlaplante committed Feb 18, 2015
1 parent a766150 commit 983fd61
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/window/MainWindow.vala
Original file line number Diff line number Diff line change
Expand Up @@ -172,7 +172,7 @@ namespace Envelope.Window {
transaction_view.with_add_transaction_view = true;
}

search_entry.placeholder_text = "Search in %s%s".printf (account.number, Envelope.Util.String.ELLIPSIS);
search_entry.placeholder_text = "Search in %s".printf (account.number);

header_bar.title = window_title;
header_bar.has_subtitle = false;
Expand Down

0 comments on commit 983fd61

Please sign in to comment.