Skip to content

Commit

Permalink
🔨 BASE #292 setando altura padrão
Browse files Browse the repository at this point in the history
  • Loading branch information
bjverde committed Jan 28, 2024
1 parent 3b48cb6 commit f8c345a
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ public function getMaxLength()
public function setSize($intColumns, $intRows)
{
$width = 0;
$height = (int)$intRows;
$height = empty($intRows)?100:(int)$intRows;
$this->getAdiantiObj()->setSize($width, $height);
}

Expand Down

0 comments on commit f8c345a

Please sign in to comment.