summaryrefslogtreecommitdiff
path: root/loadbars.pl
diff options
context:
space:
mode:
authorPaul Buetow <paul@buetow.org>2011-01-12 15:02:23 +0000
committerPaul Buetow <paul@buetow.org>2011-01-12 15:02:23 +0000
commit1bbf914976c58d506261653ab4c633787e97fc0c (patch)
treedc72856c7060248c33e4e65a4a7d61b23d76ee60 /loadbars.pl
parentb41e228b9ddc891d9814e9b3b1ba0e275007a122 (diff)
some cosmetic fixes
Diffstat (limited to 'loadbars.pl')
-rwxr-xr-xloadbars.pl7
1 files changed, 4 insertions, 3 deletions
diff --git a/loadbars.pl b/loadbars.pl
index 460dea1..9748209 100755
--- a/loadbars.pl
+++ b/loadbars.pl
@@ -415,10 +415,11 @@ TIMEKEEPER:
sub thr_display_stats () {
my $app = SDL::App->new(
+ -title => $CONF{title},
+ -icon_title => $CONF{title},
-width => $CONF{width},
-height => $CONF{height}.
-depth => DEPTH,
- -title => $CONF{title},
-resizeable => 0,
);
@@ -620,7 +621,7 @@ END
} grep {
$d{$_}{mode} & 2 and exists $d{$_}{help}
- } sort { $d{$a}{menupos} <=> $d{$b}{menupos} } sort keys %d
+ } sort { $d{$a}{menupos} <=> $d{$b}{menupos} } sort keys %d;
} elsif ($arg eq 'options') {
map {
@@ -629,7 +630,7 @@ END
} grep {
$d{$_}{mode} & 4 and exists $d{$_}{type}
- } sort keys %d
+ } sort keys %d;
}
};