From e21da8636ee25fa71289fd73c2c1e2b0ea043d56 Mon Sep 17 00:00:00 2001 From: Marcos Pinto Date: Sat, 17 Nov 2007 05:57:51 +0000 Subject: [PATCH] tweak remap dialog size --- plugins/TorrentFiles/tab_files.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/plugins/TorrentFiles/tab_files.py b/plugins/TorrentFiles/tab_files.py index 44183b0ec..dfca6d3c0 100644 --- a/plugins/TorrentFiles/tab_files.py +++ b/plugins/TorrentFiles/tab_files.py @@ -113,6 +113,8 @@ an error trying to launch the file.")) (gtk.STOCK_CANCEL, gtk.RESPONSE_CANCEL,gtk.STOCK_OK, gtk.RESPONSE_OK)) dlg.set_default_response(gtk.RESPONSE_OK) 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)) label = gtk.Label(_("Enter the new name of the file")) entry = gtk.Entry()