summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSung-jae Park <nicesj@nicesj.com>2017-09-06 16:57:58 +0900
committerSung-jae Park <nicesj@nicesj.com>2017-09-06 16:57:58 +0900
commitf4366e392d9f7e56f80f44c68054b32d19634fc3 (patch)
tree7fa84a5886aa9969166f8e88b28da05ffb5f404a
parent1f0fae0a66389565c6ff3628168195e1ffe03165 (diff)
downloadmediahub-f4366e392d9f7e56f80f44c68054b32d19634fc3.tar.gz
mediahub-f4366e392d9f7e56f80f44c68054b32d19634fc3.tar.bz2
mediahub-f4366e392d9f7e56f80f44c68054b32d19634fc3.zip
Fixed issue [TNEXT-2869]
The scroller view of the image tab overlapped entire screen. Because of the overlapped scroller view, the bottom area, which includes various controllers such as buttons and combo box, is not able to get the focus or the events from the user. This patch resizes the height of the scroller in the image tab. After applying this patch, the bottom area will get the user events like the other tabs. Reference: http://suprem.sec.samsung.net/jira/browse/TNEXT-2869 Change-Id: I9141ff02bc5266bea00ea43a8bf2241d02059741 Signed-off-by: Sung-jae Park <nicesj@nicesj.com>
-rwxr-xr-xTVMediaHub/TVMediaHub.Tizen/Views/ImageTab.xaml2
1 files changed, 1 insertions, 1 deletions
diff --git a/TVMediaHub/TVMediaHub.Tizen/Views/ImageTab.xaml b/TVMediaHub/TVMediaHub.Tizen/Views/ImageTab.xaml
index 47cf795..26fd5d6 100755
--- a/TVMediaHub/TVMediaHub.Tizen/Views/ImageTab.xaml
+++ b/TVMediaHub/TVMediaHub.Tizen/Views/ImageTab.xaml
@@ -37,7 +37,7 @@
</RelativeLayout>
<ScrollView x:Name="ImageTabScrollView"
- RelativeLayout.HeightConstraint="{ConstraintExpression Type=RelativeToParent, Property=Height, Factor=1}"
+ RelativeLayout.HeightConstraint="{ConstraintExpression Type=RelativeToParent, Property=Height, Factor=0.855}"
RelativeLayout.WidthConstraint="{ConstraintExpression Type=RelativeToParent, Property=Width, Factor=1}"
Orientation="Horizontal" IsVisible="False">
<StackLayout x:Name="GalleryContentView"