Esempio n. 1
0
        void updateImage(Chunk chunk)
        {
            //one or more image chunks have finished downloading images
            //update only if not printing (otherwise update will be called as usual)
            if (!timerPrint.Enabled)
            {
                if (timerPrint.Interval == ZERO_DELAY || chunk.IsImgExpanding())
                    jumpToLastLine();

                //also force drawing
                this.Invalidate();
            }
        }