/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 viz/branchwin.py

  • Committer: Jelmer Vernooij
  • Date: 2006-06-07 09:06:10 UTC
  • mfrom: (45.1.2 bzrk)
  • mto: This revision was merged to the branch mainline in revision 58.
  • Revision ID: jelmer@samba.org-20060607090610-05891911ea1dff92
[merge] Michael

Show diffs side-by-side

added added

removed removed

Lines of Context:
346
346
 
347
347
            image = gtk.Image()
348
348
            image.set_from_stock(
349
 
                gtk.STOCK_JUMP_TO, gtk.ICON_SIZE_SMALL_TOOLBAR)
350
 
            image.show()
351
 
 
352
 
            button = gtk.Button()
353
 
            button.add(image)
354
 
            button.connect("clicked", self._go_clicked_cb, parent_id)
355
 
            hbox.pack_start(button, expand=False, fill=True)
356
 
            button.show()
357
 
 
358
 
            image = gtk.Image()
359
 
            image.set_from_stock(
360
349
                gtk.STOCK_FIND, gtk.ICON_SIZE_SMALL_TOOLBAR)
361
350
            image.show()
362
351
 
368
357
            hbox.pack_start(button, expand=False, fill=True)
369
358
            button.show()
370
359
 
371
 
            label = gtk.Label(parent_id)
372
 
            label.set_selectable(True)
373
 
            hbox.pack_start(label, expand=False, fill=True)
374
 
            label.show()
 
360
            button = gtk.Button(parent_id)
 
361
            button.connect("clicked", self._go_clicked_cb, parent_id)
 
362
            hbox.pack_start(button, expand=False, fill=True)
 
363
            button.show()
375
364
 
376
365
 
377
366
    def _back_clicked_cb(self, *args):