irritating tasedit ui speedup

This commit is contained in:
zeromus 2008-06-03 05:55:26 +00:00
parent c366dc1f2b
commit e3056fc1eb
1 changed files with 4 additions and 1 deletions

View File

@ -190,7 +190,10 @@ static void ColumnSet(int column)
for(TSelectionFrames::iterator it(selectionFrames.begin()); it != selectionFrames.end(); it++) for(TSelectionFrames::iterator it(selectionFrames.begin()); it != selectionFrames.end(); it++)
{ {
currMovieData.records[*it].setBitValue(0,button,newValue); currMovieData.records[*it].setBitValue(0,button,newValue);
ListView_Update(hwndList,*it); //we would do this if we wanted to update the affected record. but that results in big operations
//redrawing once per item set, which causes it to flicker and take forever.
//so now we rely on the update at the end.
//ListView_Update(hwndList,*it);
} }
//reduce the green zone //reduce the green zone