diff options
author | Thierry Vignaud <tvignaud@mandriva.org> | 2003-01-14 13:30:03 +0000 |
---|---|---|
committer | Thierry Vignaud <tvignaud@mandriva.org> | 2003-01-14 13:30:03 +0000 |
commit | ea760104ceabbd918fda0032fced1cc23ae98deb (patch) | |
tree | 0cf2cf72de111c7b6fa3707533f77628fdcff6a1 | |
parent | b829826ba3a1871a57e246583b476ea86f213db3 (diff) | |
download | drakx-backup-do-not-use-ea760104ceabbd918fda0032fced1cc23ae98deb.tar drakx-backup-do-not-use-ea760104ceabbd918fda0032fced1cc23ae98deb.tar.gz drakx-backup-do-not-use-ea760104ceabbd918fda0032fced1cc23ae98deb.tar.bz2 drakx-backup-do-not-use-ea760104ceabbd918fda0032fced1cc23ae98deb.tar.xz drakx-backup-do-not-use-ea760104ceabbd918fda0032fced1cc23ae98deb.zip |
fix font_choice()
-rwxr-xr-x | perl-install/standalone/drakfont | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/perl-install/standalone/drakfont b/perl-install/standalone/drakfont index 959b4b055..8d30993ae 100755 --- a/perl-install/standalone/drakfont +++ b/perl-install/standalone/drakfont @@ -949,10 +949,10 @@ sub font_choice { clicked => \&file_ok_sel, $file_dialog ); - $file_dialog->ok_button->child->set(N("Add")); + $file_dialog->ok_button->set_label(N("Add")); $file_dialog->cancel_button->signal_connect( clicked => sub { $file_dialog->destroy() }); - $file_dialog->cancel_button->child->set(N("Close")); + $file_dialog->cancel_button->set_label(N("Close")); $file_dialog->set_filename( N("Select the font file or directory and click on 'Add'")); $file_dialog->show(); |