Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Fix tab moving from notebook to notebook
  • Loading branch information
danlucraft committed Jan 19, 2010
1 parent 5898f2d commit 2d90dd6
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions plugins/edit_view/lib/edit_view/edit_tab.rb
Expand Up @@ -18,5 +18,13 @@ def create_edit_view
def edit_view_focussed
notify_listeners(:focus)
end

def serialize
{ :title => title }
end

def deserialize(data)
self.title = data[:title]
end
end
end

0 comments on commit 2d90dd6

Please sign in to comment.