# HG changeset patch # User bsmith@81767d24-ef19-dc11-ae90-00e081727c95 # Date 1602737111 0 # Node ID 4cb258fb67292f0fe58b54c357e306fc4196f8ab # Parent a5d58393f7d09b11738bdb624ee768bd95a1ba34 Mac: Fix overlooked change in the NSCell code. diff -r a5d58393f7d0 -r 4cb258fb6729 mac/dw.m --- a/mac/dw.m Thu Oct 15 04:39:18 2020 +0000 +++ b/mac/dw.m Thu Oct 15 04:45:11 2020 +0000 @@ -7831,7 +7831,7 @@ #else DWImageAndTextCell *browsercell = [[[DWImageAndTextCell alloc] init] autorelease]; [browsercell setImage:icon]; - [browsercell setStringValue:[NSString stringWithUTF8String:filename]]; + [browsercell setStringValue:text]; [cont editCell:browsercell at:(row+lastadd) and:0]; #endif [cont setNeedsDisplay:YES];