jaehwan pushed a commit to branch master.

http://git.enlightenment.org/tools/eflete.git/commit/?id=1df2213b7af199b56af6393db299063ee310c841

commit 1df2213b7af199b56af6393db299063ee310c841
Author: Jaehwan Kim <jae.hwan....@samsung.com>
Date:   Tue Dec 27 13:01:52 2016 +0900

    property_sound: fix the range of frequency.
    
    The range should be 20-20000.
    
    @fix
---
 src/bin/ui/property/property_sound.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/bin/ui/property/property_sound.c 
b/src/bin/ui/property/property_sound.c
index b383ab1..160030e 100644
--- a/src/bin/ui/property/property_sound.c
+++ b/src/bin/ui/property/property_sound.c
@@ -93,7 +93,7 @@ _init_cb(Property_Attribute *pa, Property_Action *action)
          elm_spinner_label_format_set(action->control, "%.2f");
          break;
       case PROPERTY_SOUND_ITEM_FREQ:
-         elm_spinner_min_max_set(action->control, 200, 20000);
+         elm_spinner_min_max_set(action->control, 20, 20000);
          elm_object_disabled_set(action->control, true);
          break;
 #ifdef HAVE_AUDIO

-- 


Reply via email to