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

  • Committer: John Arbash Meinel
  • Date: 2007-10-30 22:23:37 UTC
  • mto: (330.3.3 trunk)
  • mto: This revision was merged to the branch mainline in revision 368.
  • Revision ID: john@arbash-meinel.com-20071030222337-2tm2939xt4zofhrn
start playing with using a radial box, rather than an entry in the list
to enable/disable selected files.

Show diffs side-by-side

added added

removed removed

Lines of Context:
357
357
        # file_label.show()
358
358
        self._files_box.pack_start(file_label, expand=False)
359
359
 
 
360
        self._commit_all_files_radio = gtk.RadioButton(
 
361
            None, _("Commit all changes"))
 
362
        self._files_box.pack_start(self._commit_all_files_radio, expand=False)
 
363
        self._commit_all_files_radio.show()
 
364
        self._commit_selected_radio = gtk.RadioButton(
 
365
            self._commit_all_files_radio, _("Only commit selected changes"))
 
366
        self._files_box.pack_start(self._commit_selected_radio, expand=False)
 
367
        self._commit_selected_radio.show()
 
368
 
360
369
        scroller = gtk.ScrolledWindow()
361
370
        scroller.set_policy(gtk.POLICY_AUTOMATIC, gtk.POLICY_AUTOMATIC)
362
371
        self._treeview_files = gtk.TreeView()