Subject: | Set of margin_* should not reset both x and y |
The current code is:
sub margin_left {
my $self = shift;
if (@_) {
$self->{'margin_left'} = shift;
$self->_set_relative_values();
$self->_reset_x_and_y();
}
return $self->{'margin_left'};
}
(same for right/top/bottom)
I'm in the middle of the page and wan't to hange a bit the left margin for a text, Who want's to reset y at the same time?