Details
-
Bug
-
Status: Closed
-
Minor
-
Resolution: Fixed
-
Adobe Flex SDK Previous
-
None
-
None
-
Affected OS(s): All OS Platforms
Language Found: English
Description
Found in 11665
Steps to reproduce:
1. Compile and run attached MXML file using the following compiler args: -theme+=${flexlib}/projects/spark/MXFTEText.css
2. Click an item to edit the List data provider item.
Actual Results:
The TextInput is inset +1-2px from the left and the focus rect doesnt extend all the way to the right edge
Expected Results:
No inset and the focs rect should stretch to fill the List.
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>