Label.st
branchjv
changeset 5867 ae5f44ecba6e
parent 5822 b1c3b057c48d
parent 5855 1c8fa7cccb9c
child 5981 50c1bb3e9f98
--- a/Label.st	Tue Sep 13 07:02:36 2016 +0200
+++ b/Label.st	Mon Sep 19 11:02:14 2016 +0100
@@ -499,7 +499,7 @@
 
         l := Label in:top.
         l level:-1.
-        l label:((Image fromFile:'bitmaps/garfield.gif') magnifyBy:0.2 @ 0.2).
+        l label:((Image fromFile:'../../goodies/bitmaps/gifImages/garfield.gif') magnifiedBy:0.2 @ 0.2).
         l origin:50@100.
 
         top open
@@ -516,7 +516,7 @@
         l := Label in:top.
         l adjust:#fit.
         l level:-1.
-        l label:(Image fromFile:'bitmaps/garfield.gif').
+        l label:(Image fromFile:'../../goodies/bitmaps/gifImages/garfield.gif').
         l origin:0.2@0.2 corner:0.8@0.8.
 
         top open
@@ -532,7 +532,7 @@
 
         b := Button in:top.
         b adjust:#fit.
-        b label:(Image fromFile:'bitmaps/garfield.gif').
+        b label:(Image fromFile:'../../goodies/bitmaps/gifImages/garfield.gif').
         b origin:0.2@0.2 corner:0.8@0.8.
         b action:[Transcript showCR:'wow'].