Various small enhancements
[lgpl/argeo-commons.git] / org.argeo.eclipse.ui / src / org / argeo / eclipse / ui / fs / FsTableViewer.java
index 7e8e94fb608479048666e19b96d343cbbfb98db5..370d9b9bdf43f7d0ff51732a16efae1850333d6e 100644 (file)
@@ -33,16 +33,15 @@ public class FsTableViewer extends TableViewer {
        public Table configureDefaultSingleColumnTable(int tableWidthHint) {
                Table table = this.getTable();
                table.setLayoutData(new GridData(SWT.FILL, SWT.FILL, false, false));
-               table.setLinesVisible(true);
+               table.setLinesVisible(false);
                table.setHeaderVisible(false);
-//             CmsUtils.markup(table);
-//             CmsUtils.style(table, MaintenanceStyles.BROWSER_COLUMN);
+               // CmsUtils.markup(table);
+               // CmsUtils.style(table, MaintenanceStyles.BROWSER_COLUMN);
 
                TableViewerColumn column = new TableViewerColumn(this, SWT.NONE);
                TableColumn tcol = column.getColumn();
                tcol.setWidth(tableWidthHint);
                column.setLabelProvider(new FileIconNameLabelProvider());
-
                this.setContentProvider(new MyLazyCP());
                return table;
        }