aboutsummaryrefslogtreecommitdiffstats
path: root/edit-urpm-sources.pl
diff options
context:
space:
mode:
authorGuillaume Cottenceau <gc@mandriva.com>2003-02-21 16:33:44 +0000
committerGuillaume Cottenceau <gc@mandriva.com>2003-02-21 16:33:44 +0000
commitb41ae4078450620bb01baaaf99232c081353f4b8 (patch)
treeb33dfca4a27d709435baac9ca739ca3688a16a40 /edit-urpm-sources.pl
parentb6323982fab238631b736e7e6a6e4f3721ed1d38 (diff)
downloadrpmdrake-b41ae4078450620bb01baaaf99232c081353f4b8.tar
rpmdrake-b41ae4078450620bb01baaaf99232c081353f4b8.tar.gz
rpmdrake-b41ae4078450620bb01baaaf99232c081353f4b8.tar.bz2
rpmdrake-b41ae4078450620bb01baaaf99232c081353f4b8.tar.xz
rpmdrake-b41ae4078450620bb01baaaf99232c081353f4b8.zip
make the labels of proxy dialog justified centrally
Diffstat (limited to 'edit-urpm-sources.pl')
-rwxr-xr-xedit-urpm-sources.pl4
1 files changed, 2 insertions, 2 deletions
diff --git a/edit-urpm-sources.pl b/edit-urpm-sources.pl
index 192ee7ed..f14ea602 100755
--- a/edit-urpm-sources.pl
+++ b/edit-urpm-sources.pl
@@ -220,11 +220,11 @@ sub proxy_callback {
my ($proxybutton, $proxyentry, $proxyuserbutton, $proxyuserentry, $proxypasswordentry);
gtkadd($w->{window},
gtkpack__(Gtk2::VBox->new(0, 5),
- Gtk2::Label->new(N("If you need a proxy, enter the hostname and an optional port (syntax: <proxyhost[:port]>):")),
+ gtkset_justify(Gtk2::Label->new(N("If you need a proxy, enter the hostname and an optional port (syntax: <proxyhost[:port]>):")), 'center'),
gtkpack_(Gtk2::HBox->new(0, 10),
0, gtkset_active($proxybutton = Gtk2::CheckButton->new(N("Proxy hostname:")), to_bool($proxy)),
1, gtkset_sensitive($proxyentry = gtkentry($proxy), to_bool($proxy))),
- Gtk2::Label->new(N("You may specify a user/password for the proxy authentication:")),
+ gtkset_justify(Gtk2::Label->new(N("You may specify a user/password for the proxy authentication:")), 'center'),
gtkpack_(Gtk2::HBox->new(0, 10),
0, gtkset_active($proxyuserbutton = Gtk2::CheckButton->new(N("User:")), to_bool($proxy_user)),
1, gtkset_sensitive($proxyuserentry = gtkentry($user), to_bool($proxy_user)),