Hi,
I took a brief look. It looks like a strange problem. If I add the wantsToDisplayOnEmptyQuery to false, it seems to work, but I do not understand the real problem. At least not yet. Could you live with it for now?
GTSpotterMorph new
extent: (World width / 3.25 @ (World height / 2.25)) asIntegerPoint;
spotterModel: ((GTSpotter new)
processorsFilter: (CodePanelProcessorFilter new
configuredWith: [ :aProcessor | aProcessor
actLogic: [ :aMethod :step |
step exit.
aMethod ifNil: [ self new openInWindowLabeled: 'Code panel' ]
ifNotNil: [
|panel|
panel := self new.
panel openInWindowLabeled: 'Code panel'.
panel newCardFor: aMethod.]];
candidatesLimit: 50;
wantsToDisplayOnEmptyQuery: false ]));
openCenteredInWorld
Cheers,
Doru
On Feb 24, 2016, at 7:46 PM, Stephan Eggermont <stephan@stack.nl> wrote:
On 24-02-16 19:37, Tudor Girba wrote:
Hi,
Could you provide a fully loadable sample to look at this?
Just load NewUI from the configuration browser.
Stephan