tweak remap dialog size

This commit is contained in:
Marcos Pinto 2007-11-17 05:57:51 +00:00
parent f40e5522bd
commit e21da8636e
1 changed files with 2 additions and 0 deletions

View File

@ -113,6 +113,8 @@ an error trying to launch the file."))
(gtk.STOCK_CANCEL, gtk.RESPONSE_CANCEL,gtk.STOCK_OK, gtk.RESPONSE_OK)) (gtk.STOCK_CANCEL, gtk.RESPONSE_CANCEL,gtk.STOCK_OK, gtk.RESPONSE_OK))
dlg.set_default_response(gtk.RESPONSE_OK) dlg.set_default_response(gtk.RESPONSE_OK)
dlg.set_modal(True) dlg.set_modal(True)
dlg.set_default_size(300, 150)
dlg.set_position(gtk.WIN_POS_CENTER_ALWAYS)
dlg.set_icon(deluge.common.get_logo(32)) dlg.set_icon(deluge.common.get_logo(32))
label = gtk.Label(_("Enter the new name of the file")) label = gtk.Label(_("Enter the new name of the file"))
entry = gtk.Entry() entry = gtk.Entry()