/b-gtk/fix-viz

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/b-gtk/fix-viz

« back to all changes in this revision

Viewing changes to olive/menu.py

  • Committer: Szilveszter Farkas (Phanatic)
  • Date: 2007-02-01 16:42:48 UTC
  • mfrom: (126.1.22 bzr-gtk)
  • Revision ID: szilveszter.farkas@gmail.com-20070201164248-u11v85zglb00rohf
Merge from integration branch (refactoring, some new features)

Show diffs side-by-side

added added

removed removed

Lines of Context:
253
253
 
254
254
    def edit_bookmark(self, action):
255
255
        """ Left context menu -> Edit """
256
 
        from bookmark import OliveBookmarkDialog
 
256
        from bookmark import BookmarkDialog
257
257
        
258
258
        if self.selected != None:
259
 
            bookmark = OliveBookmarkDialog(self.selected, self.app.window)
 
259
            bookmark = BookmarkDialog(self.selected, self.app.window)
260
260
            response = bookmark.run()
261
261
            
262
262
            if response != gtk.RESPONSE_NONE: