From: brett l. <wak...@gm...> - 2006-02-21 01:40:50
|
On 2/18/06, Erik Vos <eri...@hc...> wrote: > > Ok... I've commited some additional changes that return the ORWindow > > to fully functioning. > > I'm now getting a ClassCastException at UpgradesPanel.mouseClicked, line > 216, > when the first tile is laid. > OK... Fixed that. > > I'm noticing a bit of flicker in StatusWindow. I'll check and see if > > we're painting it too often. > > I see this flickering only in the part of StatusWindow that overlaps with > the StockChart window, and it seems to be caused by excessive repainting > of the StockChart, even if nothing has changed there. > I've committed some initial changes to StockChart that lay the groundwork for fixing this. Essentially the problem is that, with every repaint, we're removing all elements of the StockChart, and repopulating the whole thing. So, I'm having to rework a bit of the structure of StockChart to allow us to update a single element of the chart without having to repopulate the whole thing. ----Brett. |