Skip to content

Commit

Permalink
fix bug #104870 : replace pad/ipad to padx/pady
Browse files Browse the repository at this point in the history
  • Loading branch information
Dmitry Karasik committed Jun 8, 2015
1 parent 09506ad commit 0ae6c64
Showing 1 changed file with 8 additions and 4 deletions.
12 changes: 8 additions & 4 deletions Prima/VB/Classes.pm
Expand Up @@ -2984,8 +2984,10 @@ use vars qw(@ISA %packProps %packDefaults);
anchor => 'pack_anchor',
expand => 'bool',
fill => 'pack_fill',
pad => 'point',
ipad => 'point',
padx => 'iv',
pady => 'iv',
ipadx => 'iv',
ipady => 'iv',
side => 'pack_side',
);

Expand All @@ -2995,8 +2997,10 @@ use vars qw(@ISA %packProps %packDefaults);
anchor => 'center',
expand => 0,
fill => 'none',
pad => [0,0],
ipad => [0,0],
padx => 0,
pady => 0,
ipadx => 0,
ipady => 0,
side => 'top',
);

Expand Down

0 comments on commit 0ae6c64

Please sign in to comment.