Hi,
I am

fetching

how can i modify the height of rows in swt Table.
I used this code :
table.addListener(SWT.MeasureItem, new Listener() {
public void handleEvent(Event event) {
event.gc.setLineWidth(varWidth);
event.height = varHeight;
}
but the problem is that i can just increase the height of rows but not decreasing it.
Can someone help me!
Thanks