/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 14:52:43 UTC
  • mto: (157.1.2 trunk) (170.1.3 trunk)
  • mto: This revision was merged to the branch mainline in revision 141.
  • Revision ID: szilveszter.farkas@gmail.com-20070201145243-5a1k1yhh0b6gabyj
Remove trash from olive.glade. Some cleanups.

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: