public void setRowHeight(int rowHeight) {
   if (rowHeight > 0) {
     super.setRowHeight(rowHeight);
     if (myTreeTable != null && myTreeTable.getRowHeight() != rowHeight) {
       myTreeTable.setRowHeight(getRowHeight());
     }
   }
 }
예제 #2
0
파일: TreeView.java 프로젝트: jexp/idea2
 public void setRowHeight(int i) {
   super.setRowHeight(0);
   // this is needed in order to make UI calculate the height for each particular row
 }