From 40dda47ac5703de4a55c2a521bcbb9cbcf42a106 Mon Sep 17 00:00:00 2001 From: darius Date: Wed, 5 Nov 2008 18:25:42 +0000 Subject: [PATCH] change cursor to crHourGlass when refreshing the log added Application.ProcessMessages to ChangeCursor method git-svn-id: trunk@17241 - --- components/lazsvnpkg/svnlogform.pas | 2 ++ 1 file changed, 2 insertions(+) diff --git a/components/lazsvnpkg/svnlogform.pas b/components/lazsvnpkg/svnlogform.pas index 8993d82eff..80c4307487 100644 --- a/components/lazsvnpkg/svnlogform.pas +++ b/components/lazsvnpkg/svnlogform.pas @@ -250,10 +250,12 @@ begin LogListView.Cursor:=ACursor; SVNLogMsgMemo.Cursor:=ACursor; SVNActionsListView.Cursor:=ACursor; + Application.ProcessMessages; end; procedure TSVNLogFrm.RefreshButtonClick(Sender: TObject); begin + ChangeCursor(crHourGlass); Execute(0); end;