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

  • Committer: Curtis Hovey
  • Date: 2011-09-08 03:11:06 UTC
  • mto: This revision was merged to the branch mainline in revision 741.
  • Revision ID: sinzui.is@verizon.net-20110908031106-c0s7grzmctdyghcm
Fixed packing args.

Show diffs side-by-side

added added

removed removed

Lines of Context:
145
145
 
146
146
        self.entry = Gtk.Entry()
147
147
        self.entry.set_visibility(False)
148
 
        self.get_content_area().pack_end(self.entry, padding=10)
 
148
        self.get_content_area().pack_end(self.entry, False, False, 10)
149
149
 
150
150
        self.get_content_area().show_all()
151
151