diff options
-rw-r--r-- | perl-install/NEWS | 1 | ||||
-rw-r--r-- | perl-install/install/NEWS | 1 | ||||
-rw-r--r-- | perl-install/interactive/gtk.pm | 1 |
3 files changed, 3 insertions, 0 deletions
diff --git a/perl-install/NEWS b/perl-install/NEWS index 059050925..06b11bc5c 100644 --- a/perl-install/NEWS +++ b/perl-install/NEWS @@ -1,5 +1,6 @@ - fix default spacing between GUI elements - "Help" dialogs: + o add a separator before "Close" button o put "Close" button of help at right end - finish-install: o fix setting utf8 when using lang=xx from /proc/cmdline (#43566) diff --git a/perl-install/install/NEWS b/perl-install/install/NEWS index 1d92ddfdf..d479a46ee 100644 --- a/perl-install/install/NEWS +++ b/perl-install/install/NEWS @@ -2,6 +2,7 @@ - fix default spacing between GUI elements - fix parsing error messages ar markups - "Help" dialogs: + o add a separator before "Close" button o put "Close" button of help at right end - services (thanks to spuk): o list ip6tables in "Internet" category diff --git a/perl-install/interactive/gtk.pm b/perl-install/interactive/gtk.pm index 9ae007c8b..4127f8688 100644 --- a/perl-install/interactive/gtk.pm +++ b/perl-install/interactive/gtk.pm @@ -797,6 +797,7 @@ sub display_help { 1, create_scrolled_window(gtkset_border_width($view, 5), [ 'never', 'automatic' ], ), + 0, Gtk2::HSeparator->new, 0, gtkpack(create_hbox('end'), gtknew('Button', text => N("Close"), clicked => sub { Gtk2->main_quit }) ), |