1
0
mirror of https://github.com/arsenetar/dupeguru.git synced 2025-03-10 05:34:36 +00:00

Fixed column reloading which was broken since the mark-->marked rename.

This commit is contained in:
Virgil Dupras 2010-02-13 14:08:37 +01:00
parent e8f92535d3
commit b182585d46

View File

@ -107,12 +107,13 @@ http://www.hardcoded.net/licenses/hs_license
} }
//Add columns and set widths //Add columns and set widths
for (NSString *colId in aColumnsOrder) { for (NSString *colId in aColumnsOrder) {
if ([colId isEqual:@"marked"]) { NSInteger colIndex = [colId integerValue];
if ((colIndex == 0) && (![colId isEqual:@"0"])) {
continue; continue;
} }
NSTableColumn *col = [_resultColumns objectAtIndex:[colId intValue]]; NSTableColumn *col = [_resultColumns objectAtIndex:colIndex];
NSNumber *width = [aColumnsWidth objectForKey:[col identifier]]; NSNumber *width = [aColumnsWidth objectForKey:[col identifier]];
NSMenuItem *mi = [columnsMenu itemWithTag:[colId intValue]]; NSMenuItem *mi = [columnsMenu itemWithTag:colIndex];
if (width) { if (width) {
[col setWidth:[width floatValue]]; [col setWidth:[width floatValue]];
} }