We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent aa2fb67 commit b1bbbf9Copy full SHA for b1bbbf9
1 file changed
Speedster/Speedster.x
@@ -403,13 +403,15 @@ static double reverseFolderSliderValue(double input){
403
%end
404
405
%hook SBIconView
406
- -(void)setAllowsEditingAnimation:(BOOL)arg1{//Icon editting jitter
407
- if (isNoiconshakingEnable){
408
- %orig(NO);
+
+ -(void)setEditingAnimationStrength:(CGFloat)arg1{
+ if (isNoiconshakingEnable){
409
+ %orig(0);
410
}else{
- %orig;
411
+ %orig(arg1);
412
}
413
414
415
416
417
%ctor { //More pref
0 commit comments