about summary refs log tree commit diff
path: root/src/ui
diff options
context:
space:
mode:
authorRicky Kresslein <rk@lakoliu.com>2022-05-22 11:15:37 +0300
committerRicky Kresslein <rk@lakoliu.com>2022-05-22 11:15:37 +0300
commit6ec127b0f66dcffbb51c60611dd8aa4982cbb6eb (patch)
tree3921ddc5d576a6a2c08bace63ed499a4fec63be9 /src/ui
parent3942e6cab7a0883220d78068dc47ddf81760a90e (diff)
downloadFurtherance-6ec127b0f66dcffbb51c60611dd8aa4982cbb6eb.tar.zst
Edit task placeholder text
Diffstat (limited to 'src/ui')
-rwxr-xr-xsrc/ui/window.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ui/window.rs b/src/ui/window.rs
index 9d32e14..5b7d647 100755
--- a/src/ui/window.rs
+++ b/src/ui/window.rs
@@ -323,7 +323,7 @@ impl FurtheranceWindow {
             let task_name_edit = gtk::Entry::new();
             task_name_edit.set_placeholder_text(Some(&gettext("Task Name")));
             let task_tags_edit = gtk::Entry::new();
-            let tags_placeholder = format!("#{}", &gettext("Tags"));
+            let tags_placeholder = format!("#{}", &gettext("tags"));
             task_tags_edit.set_placeholder_text(Some(&tags_placeholder));
 
             let labels_box = gtk::Box::new(gtk::Orientation::Horizontal, 5);