Skip to content

Commit

Permalink
Adjust it a bit more
Browse files Browse the repository at this point in the history
  • Loading branch information
khanhduytran0 committed May 29, 2024
1 parent bc31c3a commit 575548a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions TweakSB.x
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ static uint16_t forcePadIdiom = 0;
- (void)setGridWidths:(NSArray<NSNumber *> *)values {
NSUInteger maxValue = values.lastObject.unsignedIntValue;
NSMutableArray *array = [NSMutableArray array];
for (int i = 150; i < maxValue; i += 50) {
for (int i = 150; i < maxValue; i += 20) {
[array addObject:@(i)];
}
[array addObject:@(maxValue)];
Expand All @@ -114,7 +114,7 @@ static uint16_t forcePadIdiom = 0;
- (void)setGridHeights:(NSArray<NSNumber *> *)values {
NSUInteger maxValue = values.lastObject.unsignedIntValue;
NSMutableArray *array = [NSMutableArray array];
for (int i = 150; i < maxValue; i += 50) {
for (int i = 150; i < maxValue; i += 20) {
[array addObject:@(i)];
}
[array addObject:@(maxValue)];
Expand Down

0 comments on commit 575548a

Please sign in to comment.