Flicker on resizing

Forum for reporting problems
Post Reply
Oleg Skvortsov
Posts: 0
Joined: Sun Feb 23, 2014 6:28 am

Flicker on resizing

Post by Oleg Skvortsov »

Hello
I have somewhat annoying issue: When I have to move and resize the KC control by moving and sizing it inside the right side of a splitter panel the controls flickers badly. It is little better when I move the right hand side or bottom.
I am using v4.3.3793
Any chance of this to be fixed?
Thank you
Oleg

gerard12
Posts: 21
Joined: Fri Jul 26, 2013 8:34 am

Re: Flicker on resizing

Post by gerard12 »

Hi Oleg
Try v4.4. It is stable now. We have added there new ModelStaticOnResize Boolean property to KC context. It is false by default. When set to true resizing the window does not change the 3D picture on the screen. This should improve the flicker.
The property can be set on launch like:

Code: Select all

    IView iVw  = kernelCAD.GetView();
    IKCContext iContext = (IKCContext)iVw;
    iContext.SetBoolParam(13, true);
Cheers

Post Reply