Change value of mediaSliderThumHeight
authorkeonho07.kim <keonho07.kim@samsung.com>
Tue, 26 Mar 2013 12:52:23 +0000 (21:52 +0900)
committerkeonho07.kim <keonho07.kim@samsung.com>
Tue, 26 Mar 2013 13:11:54 +0000 (22:11 +0900)
[Title] Change value of mediaSliderThumHeight
[Problem] MediaPlayer's controller was displayed wrong in emulator.
[Cause] mediaSliderThumbHeight was 0, caculation of rect was wrong.
[Solution] Change mediaSliderThumbHeight

Change-Id: I508e866c604b63b28f4ee9d573708410de3fbf78

Source/WebCore/platform/efl/RenderThemeEfl.cpp [changed mode: 0644->0755]

old mode 100644 (file)
new mode 100755 (executable)
index 5952e83..08d9f63
@@ -77,12 +77,10 @@ static const int sliderThumbHeight = 12;
 
 #if ENABLE(TIZEN_GSTREAMER_VIDEO)
 static const int mediaSliderThumbWidth = 0;
-static const int mediaSliderThumbHeight = 0;
 #else
 static const int mediaSliderThumbWidth = 12;
-static const int mediaSliderThumbHeight = 12;
 #endif
-
+static const int mediaSliderThumbHeight = 12;
 static const int mediaSliderHeight = 14;
 #endif