this is a FrameWindow in CELayoutEditor with CEGUI0.7(svn trunk 10/19)
this is a FrameWindow in CELayoutEditor with CEGUI0.62b
if i change this : (FrameWindow in looknfeel)
Code: Select all
<NamedArea name="ClientWithTitleWithFrame">
<Area>
<Dim type="LeftEdge" >
<ImageDim imageset="MIPUI_Part" image="WindowTopLeft" dimension="Width" />
</Dim>
<Dim type="TopEdge" >
<WidgetDim widget="__auto_titlebar__" dimension="BottomEdge">
<DimOperator op="Subtract">
<AbsoluteDim value="4" />
</DimOperator>
</WidgetDim>
</Dim>
<Dim type="RightEdge" >
<UnifiedDim scale="1" type="RightEdge">
<DimOperator op="Subtract">
<ImageDim imageset="MIPUI_Part" image="WindowTopRight" dimension="Width" />
</DimOperator>
</UnifiedDim>
</Dim>
<Dim type="BottomEdge" >
<UnifiedDim scale="1" type="BottomEdge">
<DimOperator op="Subtract">
<ImageDim imageset="MIPUI_Part" image="WindowBottomEdge" dimension="Height" />
</DimOperator>
</UnifiedDim>
</Dim>
</Area>
</NamedArea>
to
Code: Select all
<NamedArea name="ClientWithTitleWithFrame">
<Area>
<Dim type="LeftEdge" >
<AbsoluteDim value="0" />
</Dim>
<Dim type="TopEdge" >
<AbsoluteDim value="0" />
</Dim>
<Dim type="Width" >
<UnifiedDim scale="1" type="Width" />
</Dim>
<Dim type="Height" >
<UnifiedDim scale="1" type="Height" />
</Dim>
</Area>
</NamedArea>
the FrameWindow goes fine as 0.6, is there anything wrong in DimOperator?
ps. I use the same datafiles folder.