/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/__init__.py

  • Committer: Szilveszter Farkas (Phanatic)
  • Date: 2006-12-17 23:22:10 UTC
  • Revision ID: szilveszter.farkas@gmail.com-20061217232210-nxws311ray6wlpw3
Use OliveBookmarkDialog instead of OliveBookmark.

Fixed: #67922 (bookmarks in olive)

Show diffs side-by-side

added added

removed removed

Lines of Context:
351
351
        from remove import OliveRemoveDialog
352
352
        remove = OliveRemoveDialog(self.wt, self.wtpath,
353
353
                                   selected=self.get_selected_right(),
354
 
                                   parent=self.window,
355
 
                                   single=False)
 
354
                                   parent=self.window)
356
355
        response = remove.run()
357
356
        
358
357
        if response != gtk.RESPONSE_NONE:
405
404
 
406
405
            # Create a menu
407
406
            from menu import OliveMenu
408
 
            menu = OliveMenu(self.get_path(), self.get_selected_left())
 
407
            menu = OliveMenu(path=self.get_path(),
 
408
                             selected=self.get_selected_left(),
 
409
                             app=self)
409
410
            
410
411
            menu.left_context_menu().popup(None, None, None, 0,
411
412
                                           event.time)