Eliminated another endless loop with GTK2

git-svn-id: https://svn.code.sf.net/p/lazarus-ccr/svn@1406 8e941d3f-bd1b-0410-a28a-d453659cc2b4
This commit is contained in:
macpgmr
2010-12-23 03:44:26 +00:00
parent c058972307
commit e8fba0a729

View File

@ -4336,7 +4336,9 @@ end;
procedure ThtmlViewer.PaintWindow(DC: HDC);
begin
PaintPanel.RePaint;
BorderPanel.RePaint;
{$IFNDEF LCL}
BorderPanel.RePaint; //Causes endless loop for some reason on gtk2.
{$ENDIF}
VScrollbar.RePaint;
HScrollbar.RePaint;
end;