RichTextView::NoLazy avoids lazy update of images

git-svn-id: svn://ultimatepp.org/upp/trunk@1061 f0d560ea-af0d-0410-9eb7-867de7ffcac7
This commit is contained in:
cxl 2009-04-15 19:03:09 +00:00
parent 1e07f84e95
commit d692aea5c6
3 changed files with 8 additions and 1 deletions

View file

@ -37,6 +37,7 @@ Size MakeLogo(Ctrl& parent, Array<Ctrl>& ctrl)
w.PageWidth(2900);
w.NoSb();
w.SetFrame(NullFrame());
w.NoLazy();
parent.Add(w.TopPos(isz.cy + 3, 99).LeftPos(0, isz.cx));
return sz;
}
@ -87,6 +88,7 @@ struct AboutDlg : TopWindow {
about.RightPos(0, 1000 - isz.cx).VSizePos();
about.HMargins(4);
about.SetFrame(NullFrame());
about.NoLazy();
Background(PaintRect(ColorDisplay(), SColorPaper()));
Add(about);
Title("About TheIDE");