Hi,
It was nice to press Cmd + o in GTInspector to inspect without opening a new window and having the multi windows mechanism. Nevertheless, it seems that in version 2723, it does not work anymore. Is it something known? Is it normal? (It was really nice and useful, so please give us it back ;o))
Cheers,
Anne
Status: New
Owner: ----
Labels: Type-Defect Priority-Medium
New issue 1090 by damien.c...(a)gmail.com: In latest Moose 5.0, I can't
scroll the distribution map view
https://code.google.com/p/moose-technology/issues/detail?id=1090
| dm |
dm := DistributionMap new.
dm colors: {(Color r: 0.6 g: 0.0 b: 0.0). (Color r: 0.0 g: 0.0 b: 0.6)}.
dm onElements: (Collection withAllSubclasses flatCollect: [:class | class
methods])
containers: #methodClass
properties: [:element | element bytecode size ].
dm title: 'Authors Map'.
dm open.
--
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
Status: New
Owner: ----
Labels: Type-Defect Priority-Medium
New issue 1076 by damien.c...(a)gmail.com: System complexity can't export as
PNG
http://code.google.com/p/moose-technology/issues/detail?id=1076
When viewing the system complexity visualization, clicking on "Export as
PNG" under the black triangle opens a debugger: ROAthensImageExporter has
the sublcass responsability to implement exportViewAsPNG:
--
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
Status: New
Owner: ----
Labels: Type-Defect Priority-Medium Component-GlamorousToolkit
New issue 1085 by alexandr...(a)gmail.com: tool tip in the Playground
http://code.google.com/p/moose-technology/issues/detail?id=1085
Describe the problem: what do you get? what do you expect?
If I put the mouse above the play icon, top right of a window. The
keybinding (cmd-o) may be indicated no?
--
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
Status: New
Owner: ----
Labels: Type-Defect Priority-Medium
New issue 1044 by v.blonde...(a)gmail.com: Can't debug block local variables
in GT debugger
http://code.google.com/p/moose-technology/issues/detail?id=1044
Describe the problem: what do you get? what do you expect?
In the GT Debugger, when you debug a block with a local variable; you can't
read its value because the variable is unknown...
How to reproduce the problem: step by step if necessary
Write in a Workspace :
1 = 1 ifTrue: [ |local | local := 1 ]
Debug It!
Use the through button to go into the block.
Try to inspect the local variable.
Additional information: platform, context which may impact the problem
Moose 5.0 latest - Ubuntu 13.10 - x64
Please fill in the labels with the following information:
* Type-Defect
* Component-GT-Debugguer
* Milestone-5.0
--
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
Hello,
I get interested in Hismo so I tried a little bit and here is my first
steps in video :
https://www.dropbox.com/s/yss3zazouvbv28p/screencast2.mp4?dl=0
It seems that I lost class inheritance when importing an hismo meta model
from my monticello versions (.mse)…
Is it normal, am I doing something wrong ?
Thank you !
Pierre Chanson
Hello,
Usman and I use glamour a lot to quickly create cool browsers.
To capitalize some recurrent parts of our browsers, we create subclasses to
GLMCompositePresentation and then use it that way:
browser := GLMTabulator withStatusbar.
...structure definition...
browser transmit to: #selector; andShow: [ :a | a custom:
(MyCustomPresentation new)].
then we just have to implement the #compose method and everything is fine.
But now i have to transmit data to something else (I want to create a
filter that will receive a collection of entities and transmit only a
subset of it to another presentation)
I am using some morphs in this custom presentation and on some events I
send:
(self pane port: #filtered) value: self filter
In my browser i have a transmission like this:
browser transmit from: #selector port: #filtered; to: #graph; andShow: [ :a
| a list display: [ :list | list ] ].
It doesn't work because the pane obtained in my custom presentation is not
the one defined in my browser but another one named 'root'.
Maybe i am not using it in the right way but i don't see another way to do
it correctly (I would like to avoid to set the right pane in my
presentation).
Thanks in advance for your help.
PS: I tried to look in the MooseBook but the server is down
--
*Guillaume Larcheveque*