diff options
-rw-r--r-- | perl-install/NEWS | 1 | ||||
-rwxr-xr-x | perl-install/standalone/drakfont | 3 |
2 files changed, 4 insertions, 0 deletions
diff --git a/perl-install/NEWS b/perl-install/NEWS index 82d642938..b086b0759 100644 --- a/perl-install/NEWS +++ b/perl-install/NEWS @@ -4,6 +4,7 @@ o fix race on ugtk2->exit that causes a crash (#33894) - drakfont: o handle fontpath.d + o size font directory list dialog Version 10.4.209 - 22 September 2007, by Olivier "blino" Blin diff --git a/perl-install/standalone/drakfont b/perl-install/standalone/drakfont index c761af568..769f811d2 100755 --- a/perl-install/standalone/drakfont +++ b/perl-install/standalone/drakfont @@ -740,6 +740,9 @@ sub uninstall() { #- TODO : add item to right list with gtksignal_connect gtksignal_connect(Gtk2::Button->new(N("Remove")), clicked => sub { exitdialog(); list_to_remove() }), gtksignal_connect(Gtk2::Button->new(N("Cancel")), clicked => \&exitdialog), ], + undef, + { size => [ -1, 300 ] } + ); } |