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}
|
||||
Application.Scaled := True;
|
||||
{$ENDIF}
|
||||
Application.Scaled:=True;
|
||||
Application.Initialize;
|
||||
Application.CreateForm(TMainForm, MainForm);
|
||||
Application.Run;
|
||||
|
@ -228,6 +228,8 @@ type
|
||||
|
||||
implementation
|
||||
|
||||
uses
|
||||
InterfaceBase;
|
||||
|
||||
//=== { TJvScopeLineValues } =================================================
|
||||
|
||||
@ -730,7 +732,12 @@ begin
|
||||
FLines[I].FValues.Add(FLines[I].Position);
|
||||
end;
|
||||
end;
|
||||
{$IFDEF LCLQt}
|
||||
Invalidate;
|
||||
Application.ProcessMessages;
|
||||
{$ELSE}
|
||||
Repaint;
|
||||
{$IFEND}
|
||||
if Assigned(FOnUpdate) then
|
||||
FOnUpdate(Self);
|
||||
end;
|
||||
|
Reference in New Issue
Block a user