Skip to content

Commit

Permalink
fix hrule thickness argument
Browse files Browse the repository at this point in the history
  • Loading branch information
Alex-Jordan committed Aug 12, 2023
1 parent d9a60cd commit 3db642a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion macros/ui/niceTables.pl
Original file line number Diff line number Diff line change
Expand Up @@ -1492,7 +1492,7 @@ sub getLaTeXthickness {
my $input = shift;
my $output = '';
if ($input =~ /^\s*(\.\d+|\d+\.?\d*)\s*$/) {
$output = "$1px" if $1;
$output = $1 * 0.75 . 'pt' if $1;
} elsif ($input) {
$output = "$input";
}
Expand Down

0 comments on commit 3db642a

Please sign in to comment.