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 4c8dc61 commit b13159aCopy full SHA for b13159a
Commands/popup/TMDIncrementalPopUpMenu.mm
@@ -161,7 +161,9 @@ - (void)setupInterface
161
//[theTableView setBackgroundColor:[NSColor blackColor]];
162
163
NSTableColumn *column = [[[NSTableColumn alloc] initWithIdentifier:@"foo"] autorelease];
164
- [column setDataCell:[NSClassFromString(@"OakImageAndTextCell") new]];
+ NSTextFieldCell* cell = [NSClassFromString(@"OakImageAndTextCell") new];
165
+ cell.lineBreakMode = NSLineBreakByTruncatingTail;
166
+ [column setDataCell:cell];
167
[column setEditable:NO];
168
[theTableView addTableColumn:column];
169
[column setWidth:[theTableView bounds].size.width];
0 commit comments