Hi Jannik,
Nice job with hooking Moose in the Pharo menu. I now added the Moose
icon :)
Cheers,
Doru
--
www.tudorgirba.com
"Next time you see your life passing by, say 'hi' and get to know her."
Hi,
I tried to make a script for Mondrian and I made a writing error.
I put a bloc on borderColor: without the bloc parameter.
The reaction of Mondrian is strange: Rectangle becomes red.....
When I remove the bloc or I put the bloc parameter (as: [:e | Color gray]), it works fine.
Here is the small script to test:
=============
|view o o2|
view := MOViewRenderer new.
o := OrderedCollection new: 1000.
o2 := #(1 2 3 4 5 6 7 8 9 10).
1 to: 100 do:[:i | o add: i].
(view shape: (MORectangleShape new
width: 200;
height: 200;
withBorder;
borderColor: [Color gray])).
view nodes: o.
view layout: (MOGridLayout new gapSize: 1).
view open
=============
Cheers
---
Jannik Laval
Hi Alexandre,
I am using popupViews, but depending on the position of the entity that displays the popup, sometimes only part of it is visible (see attached image).
in those cases, it should be displayed to the left-side.
Veronica
Hi,
I just make an entry for moose in pharo main menu.
It should replace the Moose workspace.
I place the method menuCommandOn: in MooseModel, class side.
We should place it in a better place, I will do it soon.
I need an icons, as for now there is the debug icon.
Doru, do you have a better icon ?
Cheers,
---
Jannik Laval
Hi!
I would like to identify duplication of code execution in unit tests. Does anyone know whether there is some related work?
I went through Orla's paper (she worked on execution tracing) and I have seen nothing related to code execution duplication.
Any pointer?
Cheers,
Alexandre
Hi Doru,
I have defined as part of the listing presentation the tag style field, by default is gray rounded button.
GLMMorphic knows the details of each style, for now the default one, and the white rectangled button I am using.
With this you should not see any change on your tags.
cheers,
Veronica