Skip to content

Commit

Permalink
Merge pull request #905 from Alex-Jordan/nicetables-px
Browse files Browse the repository at this point in the history
fix hrule thickness argument
  • Loading branch information
drgrice1 authored Aug 20, 2023
2 parents d9a60cd + 3db642a commit 58789ff
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 58789ff

Please sign in to comment.