From 8f84b4adb229f6ff54e361ec70e65dd067b983e4 Mon Sep 17 00:00:00 2001 From: Keuckdo Bang Date: Thu, 11 Apr 2013 19:22:08 +0900 Subject: [PATCH] Fixed Add AUTO-HIDE style to FormMaker Change-Id: Ib00a8c799aed83ddf4a9918c60c1afe0268fe8ed --- src/ui/controls/FUiCtrl_FormImpl.cpp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/ui/controls/FUiCtrl_FormImpl.cpp b/src/ui/controls/FUiCtrl_FormImpl.cpp index fe12e1c..8edf1f0 100644 --- a/src/ui/controls/FUiCtrl_FormImpl.cpp +++ b/src/ui/controls/FUiCtrl_FormImpl.cpp @@ -1700,6 +1700,10 @@ protected: { style |= FORM_STYLE_FOOTER; } + if (styleString.Contains(L"FORM_STYLE_INDICATOR_AUTO_HIDE")) + { + style |= FORM_STYLE_INDICATOR_AUTO_HIDE; + } _UiBuilderLayoutType layoutType = UIBUILDER_LAYOUT_NONE; __pLayoutMaker->GetLayoutType(pControlProperty, layoutType); -- 2.7.4