We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ce28511 commit 9885f22Copy full SHA for 9885f22
1 file changed
src/MacVim/MMTabline/MMTabline.m
@@ -530,7 +530,7 @@ - (void)scrollTabToVisibleAtIndex:(NSUInteger)index
530
- (void)scrollLeftOneTab
531
{
532
NSRect clipBounds = _scrollView.contentView.bounds;
533
- for (NSUInteger i = _tabs.count - 1; i >= 0; i--) {
+ for (NSInteger i = _tabs.count - 1; i >= 0; i--) {
534
NSRect tabFrame = _tabs[i].frame;
535
if (!NSContainsRect(clipBounds, tabFrame)) {
536
if (NSMinX(tabFrame) < NSMinX(clipBounds)) {
0 commit comments