You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
-**fix:** Remove setup guide banner for admin setup guide pages.
22
+
1
23
### v4.2.0 ( Nov 24, 2025 ) ###
2
24
-**update:** Ensured full compatibility for the legacy admin panel across Subscriptions, Announcements, Wholesale, Product Ads, Abuse Reports, Seller Badge, and Refund pages.
3
25
-**update:** The vendor dashboard now supports modern, full-width theme layouts, providing a more spacious user experience.
// If the width and height are both flexible then the user does not need to crop the image
294
+
if(true===flexW&&true===flexH){
295
+
returnfalse;
296
+
}
297
+
298
+
// If the width is flexible and the cropped image height matches the current image height, then the user does not need to crop the image.
299
+
if(true===flexW&&dstH===imgH){
300
+
returnfalse;
301
+
}
302
+
303
+
// If the height is flexible and the cropped image width matches the current image width, then the user does not need to crop the image.
304
+
if(true===flexH&&dstW===imgW){
305
+
returnfalse;
306
+
}
307
+
308
+
// If the cropped image width matches the current image width, and the cropped image height matches the current image height, then the user does not need to crop the image.
309
+
if(dstW===imgW&&dstH===imgH){
310
+
returnfalse;
311
+
}
312
+
313
+
// If the destination width is equal to or greater than the cropped image width then the user does not need to crop the image
0 commit comments