You've already forked lazarus-ccr
jvcllaz: Fix JvSimScope being inactive in Linux-qt.
git-svn-id: https://svn.code.sf.net/p/lazarus-ccr/svn@6965 8e941d3f-bd1b-0410-a28a-d453659cc2b4
This commit is contained in:
@ -16,7 +16,6 @@ begin
|
|||||||
{$IF LCL_FULLVERSION >= 1080000}
|
{$IF LCL_FULLVERSION >= 1080000}
|
||||||
Application.Scaled := True;
|
Application.Scaled := True;
|
||||||
{$ENDIF}
|
{$ENDIF}
|
||||||
Application.Scaled:=True;
|
|
||||||
Application.Initialize;
|
Application.Initialize;
|
||||||
Application.CreateForm(TMainForm, MainForm);
|
Application.CreateForm(TMainForm, MainForm);
|
||||||
Application.Run;
|
Application.Run;
|
||||||
|
@ -228,6 +228,8 @@ type
|
|||||||
|
|
||||||
implementation
|
implementation
|
||||||
|
|
||||||
|
uses
|
||||||
|
InterfaceBase;
|
||||||
|
|
||||||
//=== { TJvScopeLineValues } =================================================
|
//=== { TJvScopeLineValues } =================================================
|
||||||
|
|
||||||
@ -730,7 +732,12 @@ begin
|
|||||||
FLines[I].FValues.Add(FLines[I].Position);
|
FLines[I].FValues.Add(FLines[I].Position);
|
||||||
end;
|
end;
|
||||||
end;
|
end;
|
||||||
|
{$IFDEF LCLQt}
|
||||||
|
Invalidate;
|
||||||
|
Application.ProcessMessages;
|
||||||
|
{$ELSE}
|
||||||
Repaint;
|
Repaint;
|
||||||
|
{$IFEND}
|
||||||
if Assigned(FOnUpdate) then
|
if Assigned(FOnUpdate) then
|
||||||
FOnUpdate(Self);
|
FOnUpdate(Self);
|
||||||
end;
|
end;
|
||||||
|
Reference in New Issue
Block a user