Details
-
Bug
-
Status: Closed
-
Major
-
Resolution: Duplicate
-
Adobe Flex SDK Previous
-
None
-
None
-
Affected OS(s): All OS Platforms
Language Found: English
Description
Found in 4.0.0.11665
Steps to reproduce:
1. Copy and paste attached code into new Flex docuent.
2. Specify the MXFTEText.css pseudo-theme by adding the following compiler args: -theme+=${flexlib}/projects/spark/MXFTEText.css
3. Run.
4. Edit an item.
Actual Results:
When editing text, the bottom is a bit clipped.
Expected Results:
not clipped.
Workaround (if any):
n/a
<?xml version="1.0" encoding="utf-8"?>
<!-- -theme+=${flexlib}/projects/spark/MXFTEText.css -->
<s:Application xmlns:fx="http://ns.adobe.com/mxml/2009"
xmlns:s="library://ns.adobe.com/flex/spark"
xmlns:mx="library://ns.adobe.com/flex/halo">
<s:controlBarContent>
<mx:Label id="sdkVer" initialize="sdkVer.text = mx_internal::VERSION;" selectable="true" />
</s:controlBarContent>
<s:HGroup x="20" y="20">
<mx:Label text="Default:" />
<mx:List id="lst1" editable="true" width="100">
<mx:dataProvider>
<mx:ArrayList source="[One,Two,Three,Four,Five,Six,Seven,Eight,Nine,Ten]" />
</mx:dataProvider>
</mx:List>
<mx:Label text="
" />
</s:HGroup>
</s:Application>