Re: [Pharo-dev] Strange behaviour of GTInspector

2017-01-31 Thread Nicolai Hess
2017-01-31 17:05 GMT+01:00 Denis Kudriashov : > Hi. > > It seams that click on cell with value of variable in GTInspector > activates selection only when mouse moves. It feels like slow selection. > It not happens when cell with name is clicked. > > Try inspect 10@30 and select 10 or 30 to see the

Re: [Pharo-dev] Strange behaviour of GTInspector

2017-01-31 Thread Andrei Chis
Nice bug :) Most likely comes from GLMTreeMorphNodeModel>>#rowMorphForColumn: and GLMEditableLabelBrick. Right now GLMEditableLabelBrick uses an alarm to detect if the user double clicked on the column. Seems that the alarm is not triggered if the mouse does not move. Andrei On Tue, Jan 31, 201

[Pharo-dev] Strange behaviour of GTInspector

2017-01-31 Thread Denis Kudriashov
Hi. It seams that click on cell with value of variable in GTInspector activates selection only when mouse moves. It feels like slow selection. It not happens when cell with name is clicked. Try inspect 10@30 and select 10 or 30 to see the problem.