Skip to content

Commit

Permalink
Fix for bug #184
Browse files Browse the repository at this point in the history
  • Loading branch information
danlucraft committed Mar 8, 2010
1 parent 3d2f955 commit 7fca015
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions plugins/project/lib/project.rb
Expand Up @@ -220,7 +220,7 @@ def self.attach_app_listeners
end

Redcar.app.add_listener(:focussed) do
@window_trees.values.each {|tree| tree.refresh}
window_trees.values.each {|tree| tree.refresh }
end
end

Expand All @@ -236,7 +236,7 @@ def self.add_to_recent_files_for(directory_path, new_file)
end

def self.set_tree(win, tree)
@window_trees[win] = tree
window_trees[win] = tree
win.treebook.add_tree(tree)
end

Expand Down

0 comments on commit 7fca015

Please sign in to comment.