Make tables wider

This commit is contained in:
Jamie Cameron
2013-05-22 21:39:18 -07:00
parent c376e4beab
commit 9927eba8a7
2 changed files with 2 additions and 2 deletions

View File

@@ -15,7 +15,7 @@ if (keys %$playtime) {
print &ui_columns_start([ $text{'playtime_user'},
$text{'playtime_time'},
$text{'playtime_ltime'},
$text{'playtime_now'} ]);
$text{'playtime_now'} ], 100);
foreach my $u (sort { $playtime->{$b} <=> $playtime->{$a} }
keys %$playtime) {
print &ui_columns_row([

View File

@@ -42,7 +42,7 @@ foreach $t ('auth', 'account', 'session', 'password') {
$text{'edit_desc'},
$text{'edit_control'},
$text{'edit_args'},
$text{'edit_move'} ], \@tds);
$text{'edit_move'} ], 100, \@tds);
foreach $m (@mods) {
local $mn = $m->{'module'};
$mn =~ s/^.*\///;