[SCM] Installer for game data files branch, gui, updated. 9092133f0b2589fd66ef16e6348f2c3989f9aa4c
Jon Dowland
jmtd at debian.org
Fri Sep 25 17:28:54 UTC 2009
The following commit has been merged in the gui branch:
commit 7f64b49660d5a355e1a63fe720fa9ce4de712756
Author: Jon Dowland <jmtd at debian.org>
Date: Thu Sep 24 22:41:56 2009 +0100
expand attributes for FilePicker widgets
diff --git a/gdp.py b/gdp.py
index ff8743f..c6da215 100755
--- a/gdp.py
+++ b/gdp.py
@@ -51,11 +51,12 @@ class FilePicker(gtk.VBox):
self.entry = entry = gtk.Entry()
entry.connect("changed", lambda e: \
w.set_page_complete( w.get_nth_page(w.get_current_page()), True))
+ hbox.pack_start(gtk.Label("Filename: "), expand=False)
hbox.pack_start(entry)
button = gtk.Button("Select File...")
button.connect("clicked", self.handle_file_button)
- hbox.pack_start(button)
- self.pack_start(hbox)
+ hbox.pack_start(button, expand=False)
+ self.pack_start(hbox, expand=False)
def handle_file_button(self,button):
chooser = gtk.FileChooserDialog(title="Select doom2.wad",
--
Installer for game data files
More information about the Pkg-games-commits
mailing list