diff options
author | damien <damien@mandriva.com> | 2001-08-24 00:26:22 +0000 |
---|---|---|
committer | damien <damien@mandriva.com> | 2001-08-24 00:26:22 +0000 |
commit | c08b927f2a3817da5fcf08cb969c8aa18b17618e (patch) | |
tree | c15a9fa26e32f76c6b66fcbb7a3146d210ce0515 | |
parent | 115f1f3afb7d23283a1adbf2701c0750d27fc51c (diff) | |
download | drakx-c08b927f2a3817da5fcf08cb969c8aa18b17618e.tar drakx-c08b927f2a3817da5fcf08cb969c8aa18b17618e.tar.gz drakx-c08b927f2a3817da5fcf08cb969c8aa18b17618e.tar.bz2 drakx-c08b927f2a3817da5fcf08cb969c8aa18b17618e.tar.xz drakx-c08b927f2a3817da5fcf08cb969c8aa18b17618e.zip |
no absolute pixmap reference
-rwxr-xr-x | perl-install/standalone/mousedrake | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/perl-install/standalone/mousedrake b/perl-install/standalone/mousedrake index 538f0677b..de8db2a67 100755 --- a/perl-install/standalone/mousedrake +++ b/perl-install/standalone/mousedrake @@ -148,9 +148,9 @@ sub test_mouse2 { my_gtk::gtkpack($hbox, my_gtk::gtkset_border_width(my_gtk::gtkpack(new Gtk::VBox(0,10), my_gtk::gtksize(my_gtk::gtkset_usize($darea, $width+1, $height+1), $width, $height)),10)); - my ($m3_image, $m3_mask) = my_gtk::gtkcreate_xpm($darea, '/usr/share/libDrakX/pixmaps/mouse_3b.xpm'); - my ($m3_imagep, $m3_maskp) = my_gtk::gtkcreate_xpm($darea, '/usr/share/libDrakX/pixmaps/mouse_3b+.xpm'); - my ($m3_middle, $m3_middle_mask) = my_gtk::gtkcreate_xpm($darea, '/usr/share/libDrakX/pixmaps/mouse_middle.xpm'); + my ($m3_image, $m3_mask) = my_gtk::gtkcreate_xpm($darea, 'mouse_3b.xpm'); + my ($m3_imagep, $m3_maskp) = my_gtk::gtkcreate_xpm($darea, 'mouse_3b+.xpm'); + my ($m3_middle, $m3_middle_mask) = my_gtk::gtkcreate_xpm($darea, 'mouse_middle.xpm'); $image = $m3_image; $mouse->{nbuttons} > 3 and $image = $m3_imagep; my $drawarea; $drawarea = sub { $darea->window->draw_pixmap ($darea->style->bg_gc('normal'), |