Hello,
I found the bug in the #drawOn:.
Sometimes the camera position may be not float, as a result you get the ”red screen of death” ) .
Here is mcz with fix. Please integrate it.
Best regards,
Natalia
Hi,
I would like to apply filter only on the root items in a tree presentation
and not on all children. Computing children take a bit of time for each
node, which is acceptable for each root. However, accumulated computation
time make the filtering un-usable.
I could not find a possible way to avoid the filter computation for the
children in GLMTreeMorphNodeModel>>shouldBeDisplayedByText with the current
implementation. I can propose a fix.
Let me know what you think.
regards.
usman
I've just written a list of nice features we miss in Pillar:
http://www.smalltalkhub.com/#!/~Pier/Pillar
Please contribute by either making the list longer or, and I would prefer that, making it shorter.
Dear all,
something that might interest some of you.
There will be a datathon organized in Paris in collaboration with
the MIT about data & development in African countries from April 7th to 9th.
Some companies and NGOs will provide open data. Orange, the telecom
provider will provided some data about communication between local
antennas and also trajectories log of people.
I have the idea of having a small team using ROASSAL for participating
to the datathon and doing some nice vizualisations.
Anyone interested to made a team ?
You could find more information about this event here:
http://simplon.co/blog/2015/3/7/datathon-data-for-development-rdv-les-7-8-e…
sorry only in French.
Regards
--
Serge Stinckwich
UCBN & UMI UMMISCO 209 (IRD/UPMC)
Every DSL ends up being Smalltalk
http://www.doesnotunderstand.org/
Hi!
When I do a print or cmd-g on the selected expression in the back debugger, I get a new debugger. I would expect seeing the value of the expression (true or false here).
I have seen this problem many many times...
Cheers,
Alexandre
--
_,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:
Alexandre Bergel http://www.bergel.eu
^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;.
Status: New
Owner: ----
Labels: Type-Defect Priority-Medium Component-Roassal Maintainability
New issue 1112 by alexandr...(a)gmail.com: RTAction is not useful
https://code.google.com/p/moose-technology/issues/detail?id=1112
Describe the problem: what do you get? what do you expect?
RTAction has to be removed. RTBlink has to be an interaction instead
How to reproduce the problem: step by step if necessary
Additional information: platform, context which may impact the problem
Please fill in the labels with the following information:
* Type-Defect, Type-Enhancement, Type-Engineering, Type-Review, Type-Other
* Component-XXX
--
You received this message because this project is configured to send all
issue notifications to this address.
You may adjust your notification preferences at:
https://code.google.com/hosting/settings
Hi
I'm wondering how we handle the following case:
- we have a method with the same name on instance and class
- we import by merging class and metaclass.
I remember that I payed attention to that for ClassVariable but I do not see
how I handle it in the SmalltalkImporter.
Does one of you remember?
Stef
Status: New
Owner: ----
Labels: Type-Defect Priority-Medium Component-Roassal
New issue 1111 by alexandr...(a)gmail.com: RTExpandable does not work
https://code.google.com/p/moose-technology/issues/detail?id=1111
Describe the problem: what do you get? what do you expect?
In case that an element is expanded with edges, everything is screwed up.
How to reproduce the problem: step by step if necessary
Try this:
-=-=-=-=-=-=-=-=
v := RTView new.
v @ RTDraggableView.
"s := RTBox new width: [ :c | c numberOfVariables * 5 ]; height:
#numberOfMethods."
s := RTShapeBuilder new
rectangle;
width: [ :c | c numberOfVariables * 5 ]; height: #numberOfMethods.
es := s elementsOn: RTShape withAllSubclasses.
v add: es.
es @ RTPopup @ (RTLabelled new setAsHighlightable).
expand := (RTExpandable new
group: [ :group :element |
methods := (RTBox new color: Color red)
elementsOn: element model methods.
RTGridLayout on: methods.
methods @ RTPopup.
edges :=
RTEdgeBuilder new
elements: methods;
elementsToLookup: es;
view: v;
connectToAll: #dependentClasses.
group addAll: methods; addAll: edges ];
afterBlock: [ RTTreeLayout on: es ] ).
es @ expand.
eb := RTEdgeBuilder new.
eb shape line; verticalAttachPoint.
eb
view: v;
elements: es;
connectFrom: #superclass.
RTTreeLayout on: es.
v
-=-=-=-=-=-=-=-=
Additional information: platform, context which may impact the problem
Please fill in the labels with the following information:
* Type-Defect, Type-Enhancement, Type-Engineering, Type-Review, Type-Other
* Component-XXX
--
You received this message because this project is configured to send all
issue notifications to this address.
You may adjust your notification preferences at:
https://code.google.com/hosting/settings
Hi,
I find it quite confusing that there is always different shortcut for do it:
* Playground: alt + shift + g
* Inspector: alt + g
* Roassal Easel: alt + s
Can this be unified?
Peter