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 | 2 |
3 files changed, 3 insertions, 1 deletions
diff --git a/perl-install/NEWS b/perl-install/NEWS index efa8a56aa..8df0460fc 100644 --- a/perl-install/NEWS +++ b/perl-install/NEWS @@ -1,4 +1,5 @@ - fix default spacing between GUI elements +- put "Close" button of help at right end - finish-install: o fix setting utf8 when using lang=xx from /proc/cmdline (#43566) - services (thanks to spuk): diff --git a/perl-install/install/NEWS b/perl-install/install/NEWS index e746cd16c..bf29505c6 100644 --- a/perl-install/install/NEWS +++ b/perl-install/install/NEWS @@ -1,5 +1,6 @@ - do not render "Advanced" & "Help" buttons as blue - fix default spacing between GUI elements +- put "Close" button of help at right end - services (thanks to spuk): o list ip6tables in "Internet" category o list nfs-common and nfs-server in "File sharing" category diff --git a/perl-install/interactive/gtk.pm b/perl-install/interactive/gtk.pm index 20cbdb6d9..0081bdc6b 100644 --- a/perl-install/interactive/gtk.pm +++ b/perl-install/interactive/gtk.pm @@ -814,7 +814,7 @@ sub ask_fromW { 1, create_scrolled_window(gtkset_border_width($view, 5), [ 'never', 'automatic' ], ), - 0, gtkpack(create_hbox('edge'), + 0, gtkpack(create_hbox('end'), gtknew('Button', text => N("Close"), clicked => sub { Gtk2->main_quit }) ), ), |