MythTV-Themes / Arclight

The MythTV Arclight theme
Other
1 stars 3 forks source link

Watched Status show as three dots #1

Closed gentoouser closed 10 years ago

gentoouser commented 10 years ago

I had an issue where the Watched status "New" was showing as three dots.

I fixed the issue by giving more space to the field. I changed 604,10,50,40 to 604,10,55,45 in base.xml.

base.xml

<statetype name="watched">
                    <state name="no">
                        <textarea name="uhuh">
                            <area>604,10,55,45</area>
                            <align>allcenter</align>
                            <font>basesmalllightgreen</font>
                            <alpha>150</alpha>
                            <value>New</value>
                        </textarea>
                    </state>
                    <state name="yes"/>
                </statetype>

...

<statetype name="watched">
                    <state name="no">
                        <textarea name="uhuh">
                            <area>604,10,55,45</area>
                            <align>allcenter</align>
                            <font>basesmall</font>
                            <alpha>210</alpha>
                            <value>New</value>
                        </textarea>
                    </state>
                </statetype>
angelaschmid commented 10 years ago

Thanks for the patch, added. I made several other changes today, see commit log, please give it a try and report issues. Angela