Thanks. 
Well, you might also like to try this code. Make sure you delete the 'DrawSizeSweep.zsc" file from the ZStartup\ZPlugsfolder before loading the new version.
Code:
[VarDef,MPos2,0]
[ISubPalette,zplugin:MorePlugs]
[IButton,Zplugin:MorePlugs:DrawSizeSweep,"Sets DrawSize by mouse sweep",
[VarSet,MPos1,[MouseHPos]]
[If,[Var,MPos1]>[Var,MPos2],
[ISet,Draw:DrawSize,[IGet,Draw:DrawSize]+2]]
[If,[Var,MPos1]<[Var,MPos2],
[ISet,Draw:DrawSize,[IGet,Draw:DrawSize]-2]]
[VarSet,MPos2,[Var,MPos1]]
,,,'S']
If the draw size doesn't increment quickly enough change the '+2' and '-2' to larger values such as '+5' and '-5'.
Cheers,