Comment #1 on issue 432 by tu...(a)tudorgirba.com: Popup should appear only
when a certain modifier key is pressed
http://code.google.com/p/moose-technology/issues/detail?id=432
Another option would be to have the rendering happening in another thread.
Status: New
Owner: ----
Labels: Type-Defect Priority-Medium
New issue 912 by chisvasi...(a)gmail.com: Glamour presentations should update
their own actions when receiving GLMPresentationUpdated
http://code.google.com/p/moose-technology/issues/detail?id=912
Right now when a presentation receives GLMPresentationUpdated it does not
update its own actions.
For example bellow is some code to see this behaviour.
When the action from the composite presentation is triggered it updates the
action from the contained presentations but not its action.
Also if there is just one presentation in the composite then, due to how a
composite with one presentation is implemented, it won't update any action.
|browser|
browser := GLMTabulator new.
browser row: #aRow.
browser transmit to: #aRow; andShow: [ :composite |
composite
title: 'Composite';
updateOn: Announcement from: [ browser announcer ];
dynamicActions: [ :list || actions |
actions := OrderedCollection new.
actions add:
((GLMGenericAction new)
action: [ :presentation :model | browser announce: Announcement];
icon: GLMUIThemeExtraIcons glamorousAdd;
title: DateAndTime now asString;
yourself).
actions
].
composite list
title: 'List 1';
updateOn: Announcement from: [ browser announcer ];
dynamicActions: [ :list || actions |
actions := OrderedCollection new.
actions add:
((GLMGenericAction new)
action: [ :presentation :model | browser announce: Announcement];
icon: GLMUIThemeExtraIcons glamorousAdd;
title: DateAndTime now asString;
yourself).
actions
].
composite list
title: 'List 2'].
browser openOn: (1 to: 10)
Status: New
Owner: ----
Labels: Type-Defect Priority-Medium
New issue 829 by google....(a)ben.coman.com.au: Roassal Label Text does not
scale with Zoom Out
http://code.google.com/p/moose-technology/issues/detail?id=829
Actions
1. Open Roassal Easel > Example > #arrowed edges > umlLike
2. Click the <Zoom out> button multiple times
Expected Behaviour
Text gets smaller so as to stay within the border as the label box gets
smaller.
Observed Behaviour
Only the border of the label gets smaller. The text gets the same size
until it all overlaps.
Updates:
Summary: Moose crashes when importing Citezen
(OrderedCollection(Object)>>doesNotUnderstand: #unsafeAdd:)
Comment #3 on issue 736 by tudor.gi...(a)gmail.com: Moose crashes when
importing Citezen (OrderedCollection(Object)>>doesNotUnderstand:
#unsafeAdd:)
http://code.google.com/p/moose-technology/issues/detail?id=736
(No comment was entered for this change.)
Status: New
Owner: ----
CC: anquetil...(a)gmail.com
Labels: Type-Defect Priority-Medium Component-Famix
New issue 907 by tu...(a)tudorgirba.com: VerveineJ does not export source
anchors for FAMIXAnnotationType and FAMIXAnnotationTypeAttribute
http://code.google.com/p/moose-technology/issues/detail?id=907
When we have an explicit annotation in the code, we should also get the
source anchor associated with it.
For example, in the below case, SomeAnnotation.java should be associated
with SomeAnnotation:
SomeAnnotation.java
@Documented
@Target({ ElementType.FIELD })
@Retention(RetentionPolicy.CLASS)
public @interface SomeAnnotation {...}
The same applies for the contained FAMIXAnnotationTypeAttributes.
Status: New
Owner: anquetil...(a)gmail.com
CC: damien.c...(a)gmail.com
Labels: Type-Defect Priority-High Component-VerveineJ
New issue 910 by damien.c...(a)gmail.com: [VerveineJ] Some methods
have 'private' modifier in source code but not in model
http://code.google.com/p/moose-technology/issues/detail?id=910
1- Take ant-1.8.2.mse
2- Search methods with each isProtected not and: [each isPublic not and:
[each isPrivate not and: [each isStub not]]]
3- Some methods are private here