diff options
author | Christophe Fergeau <cfergeau@mandriva.com> | 2009-03-24 16:51:21 +0000 |
---|---|---|
committer | Christophe Fergeau <cfergeau@mandriva.com> | 2009-03-24 16:51:21 +0000 |
commit | f23b015f4af0a71ca2ec3ab6a73b00bd250de1b4 (patch) | |
tree | b9e5c5ef89781008376b4145135b9b25200381f0 | |
parent | 54bb94e676ce422c2b17000cb48808ffa72add6c (diff) | |
download | urpmi-f23b015f4af0a71ca2ec3ab6a73b00bd250de1b4.tar urpmi-f23b015f4af0a71ca2ec3ab6a73b00bd250de1b4.tar.gz urpmi-f23b015f4af0a71ca2ec3ab6a73b00bd250de1b4.tar.bz2 urpmi-f23b015f4af0a71ca2ec3ab6a73b00bd250de1b4.tar.xz urpmi-f23b015f4af0a71ca2ec3ab6a73b00bd250de1b4.zip |
Make text buffer used to display long messages non editable
-rwxr-xr-x | gurpmi2 | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -149,6 +149,7 @@ sub configure_urpm() { $sw->set_border_width(2); $f->add($sw); $text->get_buffer->set_text($message); + $text->set_editable(0); $_->show foreach $f, $sw, $text; $w->set_size_request(400, 400); $w->set_default_response('ok'); |