public
Description: The Git TextMate Bundle
Homepage: http://tim.theenchanter.com/
Clone URL: git://github.com/timcharper/git-tmbundle.git
- Local config settings for Log Limit and Log Context Lines were always 
saved to global and not saving to local.
drylight (author)
Thu Aug 21 19:49:42 -0700 2008
commit  1e85a9032525a3f34333766db05921baa699aa82
tree    58ed412805a475d4d61bc68f813af3fcd25690fe
parent  0756a6a91b7dfe0da96a4641e6626dabcdedc21c
...
 
1
2
3
...
1
2
3
4
0
@@ -1,3 +1,4 @@
0
+ - Local config settings for Log Limit and Log Context Lines were always saved to global and not saving to local.
0
  - Fix git gui invocation (Thanks, Pedro Melo)
0
 
0
 Release 1.6.5 [2008-07-24]
...
1
2
3
 
4
5
6
...
1
2
 
3
4
5
6
0
@@ -1,5 +1,5 @@
0
 module ConfigHelper
0
   def config_text_field(local_or_global, config_key, options = {})
0
- content_tag :input, {:type => "text", :value => git.config[local_or_global, config_key], :onchange => "dispatch({controller: 'config', action: 'set', scope: 'global', key: '#{config_key}', value: $F(this)})"}.merge(options)
0
+ content_tag :input, {:type => "text", :value => git.config[local_or_global, config_key], :onchange => "dispatch({controller: 'config', action: 'set', scope: '#{local_or_global}', key: '#{config_key}', value: $F(this)})"}.merge(options)
0
   end
0
 end
0
\ No newline at end of file

Comments

    No one has commented yet.