mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-08-16 19:49:18 +02:00
Changed the delay for the hints from 100 miliseconds to 500. I'm hoping this reduces the crashing for some people until I determine the problem.
Shane git-svn-id: trunk@553 -
This commit is contained in:
parent
c7d9c29788
commit
b036c95a80
10
ide/main.pp
10
ide/main.pp
@ -606,7 +606,7 @@ begin
|
||||
with HintTimer1 do
|
||||
Begin
|
||||
Enabled := False;
|
||||
Interval := 100;
|
||||
Interval := 500;
|
||||
OnTimer := @HintTimer1Timer;
|
||||
end;
|
||||
|
||||
@ -5478,6 +5478,10 @@ end.
|
||||
=======
|
||||
|
||||
$Log$
|
||||
Revision 1.193 2001/12/20 19:11:22 lazarus
|
||||
Changed the delay for the hints from 100 miliseconds to 500. I'm hoping this reduces the crashing for some people until I determine the problem.
|
||||
Shane
|
||||
|
||||
Revision 1.192 2001/12/19 22:09:13 lazarus
|
||||
MG: added GUID and alias parsing, added DoJumpToCodeToolBossError
|
||||
|
||||
@ -5488,6 +5492,10 @@ end.
|
||||
|
||||
<<<<<<< main.pp
|
||||
$Log$
|
||||
Revision 1.193 2001/12/20 19:11:22 lazarus
|
||||
Changed the delay for the hints from 100 miliseconds to 500. I'm hoping this reduces the crashing for some people until I determine the problem.
|
||||
Shane
|
||||
|
||||
Revision 1.192 2001/12/19 22:09:13 lazarus
|
||||
MG: added GUID and alias parsing, added DoJumpToCodeToolBossError
|
||||
|
||||
|
@ -3118,11 +3118,9 @@ begin
|
||||
//set up columns..
|
||||
//
|
||||
gtk_clist_freeze(PgtkCList(Handle));
|
||||
Writeln('Column count is ',Columns.Count);
|
||||
for I := 0 to Columns.Count-1 do
|
||||
Begin
|
||||
ColName := Columns.Item[i].Caption;
|
||||
Writeln('colnmame is ',ColName);
|
||||
GetMem(pColName,Length(colname)+1);
|
||||
pColName := StrPcopy(pColName,ColName);
|
||||
gtk_clist_set_column_title(Pgtkclist(Handle),I,pColName);
|
||||
@ -3173,7 +3171,6 @@ begin
|
||||
end;
|
||||
|
||||
gtk_clist_thaw(PgtkCList(Handle));
|
||||
Writeln('DONE csListView setPRoperties');
|
||||
|
||||
end;
|
||||
else
|
||||
@ -3630,6 +3627,10 @@ end;
|
||||
{ =============================================================================
|
||||
|
||||
$Log$
|
||||
Revision 1.94 2001/12/20 19:11:23 lazarus
|
||||
Changed the delay for the hints from 100 miliseconds to 500. I'm hoping this reduces the crashing for some people until I determine the problem.
|
||||
Shane
|
||||
|
||||
Revision 1.93 2001/12/19 21:36:05 lazarus
|
||||
Added MultiSelect to TListView
|
||||
Shane
|
||||
|
Loading…
Reference in New Issue
Block a user