You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@flex.apache.org by pi...@apache.org on 2017/03/26 15:39:48 UTC

flex-tourjs git commit: Use HorizontalFlexLayout in ButtonBar

Repository: flex-tourjs
Updated Branches:
  refs/heads/develop cff925ea2 -> f4658587c


Use HorizontalFlexLayout in ButtonBar


Project: http://git-wip-us.apache.org/repos/asf/flex-tourjs/repo
Commit: http://git-wip-us.apache.org/repos/asf/flex-tourjs/commit/f4658587
Tree: http://git-wip-us.apache.org/repos/asf/flex-tourjs/tree/f4658587
Diff: http://git-wip-us.apache.org/repos/asf/flex-tourjs/diff/f4658587

Branch: refs/heads/develop
Commit: f4658587cf4f1cc2bbe6619fb06349dd4cf1e4ad
Parents: cff925e
Author: piotrz <pi...@apache.org>
Authored: Sun Mar 26 17:37:40 2017 +0200
Committer: piotrz <pi...@apache.org>
Committed: Sun Mar 26 17:37:40 2017 +0200

----------------------------------------------------------------------
 TourJS/src/main/flex/TourJSMainView.mxml | 12 ++++++++++--
 1 file changed, 10 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/flex-tourjs/blob/f4658587/TourJS/src/main/flex/TourJSMainView.mxml
----------------------------------------------------------------------
diff --git a/TourJS/src/main/flex/TourJSMainView.mxml b/TourJS/src/main/flex/TourJSMainView.mxml
index cf96605..564424d 100644
--- a/TourJS/src/main/flex/TourJSMainView.mxml
+++ b/TourJS/src/main/flex/TourJSMainView.mxml
@@ -153,6 +153,9 @@ limitations under the License.
 				<js:VerticalFlexLayout/>
 			</js:beads>
 			<js:Panel id="topPanel" title="Example" width="100%" className="RunningExample">
+				<js:beads>
+					<js:VerticalFlexLayout />
+				</js:beads>
 				<js:SubAppLoader id="exampleApp" width="100%" height="100%" />
 			</js:Panel>
 			
@@ -160,9 +163,14 @@ limitations under the License.
 				<js:beads>
 					<js:VerticalFlexLayout/>
 				</js:beads>
-				<js:ButtonBar id="buttonBar" width="100%" change="changeExample()" />
-				<js:Container width="100%" className="ExampleCode">
+				<js:ButtonBar id="buttonBar" width="100%" height="50" change="changeExample()">
+					<js:beads>
+						<js:HorizontalFlexLayout/>
+					</js:beads>
+				</js:ButtonBar>
+				<js:Container width="100%" height="100%" className="ExampleCode">
 					<js:beads>
+						<js:BasicLayout />
 						<js:ScrollingViewport />
 					</js:beads>
 					<express:MXMLViewer id="codeArea" width="100%"/>