Status: New Owner: ---- Labels: Type-Defect Priority-Medium
New issue 1083 by chisvasi...@gmail.com: Wrong offset when rendering a GLMTabulator http://code.google.com/p/moose-technology/issues/detail?id=1083
The renderer of a GLMTabulator does not properly compute the offset of a column/row if a column/row contains at the end multiple panes with a fixed size:
|tab| tab := GLMTabulator new. tab row: #first size: 100; row: #second; row: #third size: 100; row: #forth size: 100.
tab transmit to: #first; andShow: [:a | a list display: [:x | 1 to: x ] ]. tab transmit to: #second; andShow: [:a | a list display: [:x | 1 to: x ] ]. tab transmit to: #third; andShow: [:a | a list display: [:x | 1 to: x ] ]. tab transmit to: #forth; andShow: [:a | a list display: [:x | 1 to: x ] ]. tab openOn: 10
Updates: Status: Duplicate Labels: Component-Glamour Mergedinto: 1039
Comment #1 on issue 1083 by tu...@tudorgirba.com: Wrong offset when rendering a GLMTabulator http://code.google.com/p/moose-technology/issues/detail?id=1083
It works!