<?xml version="1.0" encoding="UTF-8"?>
<commit>
  <added type="array"/>
  <modified type="array">
    <modified>
      <diff>@@ -110,4 +110,21 @@
     [subtitleCell drawInteriorWithFrame:[self subtitleRectForBounds:cellFrame] inView:view];
     [gravatarCell drawInteriorWithFrame:[self gravatarRectForBounds:cellFrame] inView:view];
 }
+
+- (void)drawWithExpansionFrame:(NSRect)cellFrame inView:(NSView *)view {
+	// oddly, the title cell seems to end up with an attributed string when selected
+	// so lets fix that
+	NSColor *titleColor = [titleCell textColor];
+	NSColor *subtitleColor = [subtitleCell textColor];
+	NSAttributedString *titleAttStr = [titleCell attributedStringValue];
+	if (titleAttStr)
+		[titleCell setStringValue:[titleAttStr string]];
+	[titleCell setTextColor:[NSColor blackColor]];
+	[subtitleCell setTextColor:[NSColor blackColor]];
+	[self drawWithFrame:cellFrame inView:view];
+	if (titleAttStr)
+		[titleCell setAttributedStringValue:titleAttStr];
+	[titleCell setTextColor:titleColor];
+	[subtitleCell setTextColor:subtitleColor];
+}
 @end</diff>
      <filename>CommitSummaryCell.m</filename>
    </modified>
    <modified>
      <diff>@@ -98,7 +98,7 @@ class CommitsController &lt; OSX::NSObject
   end
   
   def tableView_objectValueForTableColumn_row(table_view, table_column, row)
-    @commits[row].message.split(/\n/).first.to_s
+    @commits[row].message.split(/\n/, 2).first.to_s
   end
   
   objc_method :tableView_willDisplayCell_forTableColumn_row, 'v@:@@@i'</diff>
      <filename>CommitsController.rb</filename>
    </modified>
  </modified>
  <removed type="array"/>
  <parents type="array">
    <parent>
      <id>fb8340316fca8690e7a18f112d300a8783f70b45</id>
    </parent>
  </parents>
  <author>
    <name>Kevin Ballard</name>
    <email>kevin@sb.org</email>
  </author>
  <url>http://github.com/kballard/gitnub/commit/70faea0353c939f75faf5b8cb7f6c17ac98bc572</url>
  <id>70faea0353c939f75faf5b8cb7f6c17ac98bc572</id>
  <committed-date>2008-03-21T21:15:42-07:00</committed-date>
  <authored-date>2008-03-21T21:15:42-07:00</authored-date>
  <message>Fix title color for cells drawn in the expansion frame</message>
  <tree>6211a0a7a7685bb770801519b291a8511136a56e</tree>
  <committer>
    <name>Kevin Ballard</name>
    <email>kevin@sb.org</email>
  </committer>
</commit>
