From: keonho07.kim Date: Tue, 26 Mar 2013 12:52:23 +0000 (+0900) Subject: Change value of mediaSliderThumHeight X-Git-Tag: 2.1_release~302^2 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=1fd17d4ace31fe82fc4d9421de2bcc782dfb0a79;p=framework%2Fweb%2Fwebkit-efl.git Change value of mediaSliderThumHeight [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 --- diff --git a/Source/WebCore/platform/efl/RenderThemeEfl.cpp b/Source/WebCore/platform/efl/RenderThemeEfl.cpp old mode 100644 new mode 100755 index 5952e83..08d9f63 --- a/Source/WebCore/platform/efl/RenderThemeEfl.cpp +++ b/Source/WebCore/platform/efl/RenderThemeEfl.cpp @@ -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