diff options
author | etienne | 2005-08-19 13:35:53 +0000 |
---|---|---|
committer | etienne | 2005-08-19 13:35:53 +0000 |
commit | 12fd3eed1427c8489e72f43679e77b7f379f4735 (patch) | |
tree | 281c54071c05d94d13045cc2fe73577ed0c0f977 | |
parent | 20319892a2a3de37f9e53b08ef32fc7e988cdd4c (diff) | |
download | ivybanner-12fd3eed1427c8489e72f43679e77b7f379f4735.zip ivybanner-12fd3eed1427c8489e72f43679e77b7f379f4735.tar.gz ivybanner-12fd3eed1427c8489e72f43679e77b7f379f4735.tar.bz2 ivybanner-12fd3eed1427c8489e72f43679e77b7f379f4735.tar.xz |
Bug fix concernant l'affichage du champ de saisie du port ivy
-rw-r--r-- | ivybanner | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -364,7 +364,7 @@ sub demosframe { $fm_port[2] = $fm2->Frame(@frameattr)->place(-x => $x+2*$w+2*$dx, -y => $y); $fm_port[3] = $fm2->Frame(@frameattr)->place(-x => $x, -y => $y+$dy+$h); my $fm_ownport = $fm2->Frame(@frameattr, - width => 2*$w+$dx)->place(-x => $x+$w+$dx, + -width => 2*$w+$dx)->place(-x => $x+$w+$dx, -y => $y+$h+$dy); my $en_ownport = $fm_ownport->Entry(@entryattr)->place(@lab_placeattr); @@ -385,7 +385,7 @@ sub demosframe { $en_ownport->configure(-state => 'normal', -background => $fg)}, -text => "other\nport")->place(@placeattr); - + &subdirframe($fm2, $path, $x, $y, $dx, $dy); # control buttons bottom frame @@ -579,6 +579,7 @@ sub subdirframe { }); } else { $b->configure(-bg => 'gray20', + -activebackground => 'gray20', -text => ($file eq '..') ? "Up" : $file, -command => sub { &off; |