Flicker on focus
Moderator: SourceGear
Flicker on focus
Has the problem described here ( http://support.sourcegear.com/viewtopic.php?p=30316 ) been fixed in 3.5.2? Because it is really annoying in folders with a lot of files.
Jeff,jclausius wrote:Unfortunately, no.
We've logged that specific bug to be looked at in a future release.
How about a quick beta release to relieve our collective pain. I've prepared the code for you guys.
private void FormMain_Activated(object sender, EventArgs e)
{
if (!this._activated)
{
this._activated = true;
if (this._clientThreadClass != null)
{
this._clientThreadClass.Initialized += new EventHandler(this.ThreadInitializedHandler);
this._clientThreadClass.BeginCommand(new GUIClientThreadCommand(this._clientThreadClass.MakeNewCommandID(), GUIClientThreadCommandType.Init, false, null));
}
}
else if (this._clientThreadClass != null)
{
this._clientThreadClass.BeginCommand(new GUIClientThreadCommand(this._clientThreadClass.MakeNewCommandID(), GUIClientThreadCommandType.LocalRefresh, false, null));
}
}
Just comment out the following line:
this._clientThreadClass.BeginCommand(new GUIClientThreadCommand(this._clientThreadClass.MakeNewCommandID(), GUIClientThreadCommandType.LocalRefresh, false, null));
and I'll be happy as a clam at high tide .