You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@flex.apache.org by ah...@apache.org on 2014/09/25 18:03:55 UTC

[13/50] git commit: [flex-asjs] [refs/heads/develop] - use 'inherit' for fontWeight

use 'inherit' for fontWeight


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

Branch: refs/heads/develop
Commit: 5b6365c7915cb5299abacbfa9e15db31aacdaf21
Parents: 0358d0b
Author: Alex Harui <ah...@apache.org>
Authored: Mon Sep 15 15:01:22 2014 -0700
Committer: Alex Harui <ah...@apache.org>
Committed: Tue Sep 23 14:49:45 2014 -0700

----------------------------------------------------------------------
 .../FlexJSUI/src/org/apache/flex/html/beads/TitleBarView.mxml  | 6 +++++-
 1 file changed, 5 insertions(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/5b6365c7/frameworks/as/projects/FlexJSUI/src/org/apache/flex/html/beads/TitleBarView.mxml
----------------------------------------------------------------------
diff --git a/frameworks/as/projects/FlexJSUI/src/org/apache/flex/html/beads/TitleBarView.mxml b/frameworks/as/projects/FlexJSUI/src/org/apache/flex/html/beads/TitleBarView.mxml
index bd1cc39..6ed8ccf 100644
--- a/frameworks/as/projects/FlexJSUI/src/org/apache/flex/html/beads/TitleBarView.mxml
+++ b/frameworks/as/projects/FlexJSUI/src/org/apache/flex/html/beads/TitleBarView.mxml
@@ -42,7 +42,11 @@ limitations under the License.
     </basic:beads>
 
     <basic:Label id="titleLabel" text="{ITitleBarModel(model).title}" 
-                                 html="{ITitleBarModel(model).htmlTitle}" />
+                                 html="{ITitleBarModel(model).htmlTitle}" >
+        <basic:style>
+            <basic:SimpleCSSStyles fontWeight="inherit" />
+        </basic:style>
+    </basic:Label>
     <basic:CloseButton id="closeButton" click="clickHandler()"
                        visible="{ITitleBarModel(model).showCloseButton}";
 />