mirror of
https://github.com/Burrit0z/Dockify_Source.git
synced 2025-07-02 06:56:46 +00:00
Remove what appears to be unneeded
I'm not sure why this code is needed as the tweaks appears to work perfectly without it.
This commit is contained in:
12
Dockify.xm
12
Dockify.xm
@ -110,16 +110,6 @@ HBPreferences *preferences;
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
%end
|
%end
|
||||||
%hook SBDockIconListView
|
|
||||||
|
|
||||||
- (NSUInteger)iconColumnsForCurrentOrientation {
|
|
||||||
if (hidden) {
|
|
||||||
return (0);
|
|
||||||
} else {
|
|
||||||
return (setIconNumber);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
%end
|
|
||||||
//fix for icons being off the page ios 13
|
//fix for icons being off the page ios 13
|
||||||
%hook SBIconListGridLayoutConfiguration
|
%hook SBIconListGridLayoutConfiguration
|
||||||
|
|
||||||
@ -132,7 +122,7 @@ HBPreferences *preferences;
|
|||||||
NSUInteger rows = MSHookIvar<NSUInteger>(self, "_numberOfPortraitRows");
|
NSUInteger rows = MSHookIvar<NSUInteger>(self, "_numberOfPortraitRows");
|
||||||
NSUInteger columns = MSHookIvar<NSUInteger>(self, "_numberOfPortraitColumns");
|
NSUInteger columns = MSHookIvar<NSUInteger>(self, "_numberOfPortraitColumns");
|
||||||
// dock
|
// dock
|
||||||
if (rows <= 2 && columns == 4) {
|
if (rows < 2) {
|
||||||
self.location = @"Dock";
|
self.location = @"Dock";
|
||||||
} else if (rows == 3 && columns == 3) {
|
} else if (rows == 3 && columns == 3) {
|
||||||
self.location = @"Folder";
|
self.location = @"Folder";
|
||||||
|
Reference in New Issue
Block a user