From a038371e962362407615c0a0b56984f392a256ba Mon Sep 17 00:00:00 2001 From: Mike Hiretsky Date: Tue, 6 Apr 2010 17:38:59 +0400 Subject: [PATCH] Fix Xdialog size --- pym/cl_client.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pym/cl_client.py b/pym/cl_client.py index 57af139..2f21dfc 100644 --- a/pym/cl_client.py +++ b/pym/cl_client.py @@ -88,7 +88,7 @@ class GProgressBar(NoneProgressBar): title = re.sub("<[^>]+>", "", title) self.title = title if os.system('which Xdialog &>/dev/null') == 0: - pipe = subprocess.Popen('/usr/bin/Xdialog --progress "%s" 5 80'\ + pipe = subprocess.Popen('/usr/bin/Xdialog --progress "%s" 6 80'\ %(self.title), stdin=subprocess.PIPE, stdout=subprocess.PIPE,