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

  • Committer: Jelmer Vernooij
  • Date: 2010-05-29 23:42:20 UTC
  • mto: This revision was merged to the branch mainline in revision 691.
  • Revision ID: jelmer@samba.org-20100529234220-ilsto1v387x7xhve
Move more olive-specific code into olive/

Show diffs side-by-side

added added

removed removed

Lines of Context:
24
24
from bzrlib.config import GlobalConfig
25
25
import gtk
26
26
from history import UrlHistory
27
 
from olive import Preferences
28
27
import gobject
29
28
 
30
29
class BranchSelectionBox(gtk.HBox):
58
57
        for item in self._history.get_entries():
59
58
            self._combo_model.append([ item ])
60
59
        
61
 
        pref = Preferences()
62
 
        for item in pref.get_bookmarks():
63
 
            self._combo_model.append([ item ])
64
 
        
65
60
        self._combo.set_model(self._combo_model)
66
61
        self._combo.set_text_column(0)
67
62