public
Fork of Caged/gitnub
Description: A Gitk-like application written in RubyCocoa that looks like it belongs on a Mac. See the wiki for downloads and screenshots.
Homepage: http://alternateidea.com
Clone URL: git://github.com/cypher/gitnub.git
Search Repo:
Only show first line of commit message in source list
Caged (author)
Sun Mar 16 02:21:46 -0700 2008
commit  66e4e62e96cb85bebafa075b6e65e5a64bebb543
tree    109f6de016526805fd01d1c4556fa3e5cc8eb31a
parent  b4da17cd0588d92d01e3c04f377f23a17aecd288
...
88
89
90
91
 
92
93
94
...
88
89
90
 
91
92
93
94
0
@@ -88,7 +88,7 @@
0
   end
0
   
0
   def tableView_objectValueForTableColumn_row(table_view, table_column, row)
0
- @commits[row].message.gsub(/\n/, ' ').to_s
0
+ @commits[row].message.split(/\n/).first.to_s
0
   end
0
   
0
   objc_method :tableView_willDisplayCell_forTableColumn_row, 'v@:@@@i'

Comments

    No one has commented yet.