Andreas Schulz wrote:
> Here comes the new congruity version, with its shiny new
> IR code learning interface.

I'm slowly reading through your version/patches. My plan is to initially
integrate any desired changes that aren't related to IR learning; these
could form part of any release prior to a new libconcord being released.

I had one question so far. You changed from this:

sizer.Add(self.bmp_identify, ...,
        wx.ALIGN_LEFT | wx.ALIGN_BOTTOM          | wx.ALL, 5)
sizer.Add(self.text_identify, ...,
        wx.ALIGN_LEFT | wx.ALIGN_CENTER_VERTICAL | wx.ALL, 5)
sizer.Add(self.gauge_identify, ...,
        wx.ALIGN_LEFT | wx.ALIGN_BOTTOM          | wx.ALL, 5)

to this:

self.parent.sizer.Add(self.bmp,   ..., ALIGN_LC, 5)
self.parent.sizer.Add(self.text,  ..., ALIGN_LC, 5)
self.parent.sizer.Add(self.gauge, ..., ALIGN_RC, 5)

What's the benefit of changing from LB/LC/LB to LC/LC/RC for the
alignment? Things seem to line up OK how they were to start. I'm
obviously missing something.

Thanks.

-------------------------------------------------------------------------
Check out the new SourceForge.net Marketplace.
It's the best place to buy or sell services for
just about anything Open Source.
http://sourceforge.net/services/buy/index.php
_______________________________________________
concordance-devel mailing list
concordance-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/concordance-devel

Reply via email to