Jump to content
LaunchBox Community Forums

Recommended Posts

Posted

I'm having an issue with the lay files that are downloaded with the bezel project.  The current lay file order has the bezel first and then the screen.  See this example:

<!-- bezel.lay -->
<mamelayout version="2">
<element name="bezel">
<image file="bezel.png" />
</element>
<view name="Bezel Artwork">
<bezel element="bezel">
<bounds left="0" top="0" right="16" bottom="9" />
</bezel>
<screen index="0">
<bounds left="2" top="0" right="14" bottom="9" />
</screen>
</view>
</mamelayout>

 

This causes the bezel to be drawn first and then the screen goes on top.  Unfortunately this cuts off the bezel.  If I update the lay file and put the screen field first it works as expected:

 

<!-- bezel.lay -->
<mamelayout version="2">
<element name="bezel">
<image file="bezel.png" />
</element>
<view name="Bezel Artwork">
<screen index="0">
<bounds left="2" top="0" right="14" bottom="9" />
</screen>
<bezel element="bezel">
<bounds left="0" top="0" right="16" bottom="9" />
</bezel>
</view>
</mamelayout>

 

Is anyone else noticing this issue or is there a different fix?

 

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Unfortunately, your content contains terms that we do not allow. Please edit your content to remove the highlighted words below.
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...