Re: [Pharo-users] Roassal-Woden dynamically change an element height without redrawing

2015-05-11 Thread Alexandre Bergel
You need to update GT-InspectorExtensions also Alexandre -- _,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;: Alexandre Bergel http://www.bergel.eu ^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;. > On May 11, 2015, at 11:02 AM, Lusa Nicolas wrote: > > Hi, > > thank you it works now. > >

Re: [Pharo-users] Roassal-Woden dynamically change an element height without redrawing

2015-05-11 Thread Lusa Nicolas
Hi, thank you it works now. Cheers, Nicolas On May 11, 2015, at 5:54 PM, Alexandre Bergel wrote: > Hi Lusa, > > This was missing. Please update Woden (Core & Roassal) and you can do: > -=-=-=-=-=-=-=-=-=-=-=-= > v := RWView new. > > e := RWCube element. > > v add: e. > > e when: RWMouseBu

Re: [Pharo-users] Roassal-Woden dynamically change an element height without redrawing

2015-05-11 Thread Alexandre Bergel
Hi Lusa, This was missing. Please update Woden (Core & Roassal) and you can do: -=-=-=-=-=-=-=-=-=-=-=-= v := RWView new. e := RWCube element. v add: e. e when: RWMouseButtonDown do: [ :evt | evt element shape width: 2. evt element shape height: 2. evt element shape col

[Pharo-users] Roassal-Woden dynamically change an element height without redrawing

2015-05-11 Thread Lusa Nicolas
Hi folks! I am working with Roassal-Woden and I want to dynamically change the size of an element already drawn and already added to my view. This could be overcome simply by drawing a new element on top of the current one but works only for bigger elements. What if I want to take the current o