From ecb2962dd50c965e3178effcf40c663fb871e277 Mon Sep 17 00:00:00 2001 From: "Carsten Haitzler (Rasterman)" Date: Sun, 17 Nov 2013 15:11:19 +0900 Subject: [PATCH] capitalize option label --- src/bin/options_behavior.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/bin/options_behavior.c b/src/bin/options_behavior.c index 365557a1..3cd06b34 100644 --- a/src/bin/options_behavior.c +++ b/src/bin/options_behavior.c @@ -369,7 +369,7 @@ options_behavior(Evas_Object *opbox, Evas_Object *term) o = elm_check_add(bx); evas_object_size_hint_weight_set(o, EVAS_HINT_EXPAND, 0.0); evas_object_size_hint_align_set(o, EVAS_HINT_FILL, 0.5); - elm_object_text_set(o, "set TERM to xterm-256color"); + elm_object_text_set(o, "Set TERM to xterm-256color"); elm_check_state_set(o, config->xterm_256color); elm_box_pack_end(bx, o); evas_object_show(o);