From 6a006ad32f46b89d838a4478be026bb6cb9fbc75 Mon Sep 17 00:00:00 2001 From: "Alex-P. Natsios" Date: Mon, 11 Aug 2014 10:14:57 +0900 Subject: [PATCH] auto_completion - fix typo for 'relative' Summary: Fixes a typo in the completion popup. relatvie -> relative Test Plan: try to open a popup that suggests autocompletion for 'relative' Reviewers: Hermet Reviewed By: Hermet Differential Revision: https://phab.enlightenment.org/D1299 --- src/bin/auto_comp.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/bin/auto_comp.c b/src/bin/auto_comp.c index e312b24..7f7debe 100644 --- a/src/bin/auto_comp.c +++ b/src/bin/auto_comp.c @@ -66,7 +66,7 @@ init_thread_cb(void *data, Ecore_Thread *thread EINA_UNUSED) COMPDATA_SET(ad, "scale",AUTOCOMP_SCALE, 1, 0); COMPDATA_SET(ad, "rel1",AUTOCOMP_REL1, 2, 1); COMPDATA_SET(ad, "rel2",AUTOCOMP_REL2, 2, 1); - COMPDATA_SET(ad, "relatvie",AUTOCOMP_RELATIVE, 1, 0); + COMPDATA_SET(ad, "relative",AUTOCOMP_RELATIVE, 1, 0); COMPDATA_SET(ad, "offset", AUTOCOMP_OFFSET, 1, 0); COMPDATA_SET(ad, "color", AUTOCOMP_COLOR, 1, 0); COMPDATA_SET(ad, "color2", AUTOCOMP_COLOR2, 1, 0);