|
|
|
@ -79,6 +79,8 @@ public abstract class ButtonDefinePane<T extends Button> extends AbstractDataMod
|
|
|
|
|
private void refreshAdvancedPane(boolean containsExtraPane) { |
|
|
|
|
double p = TableLayout.PREFERRED; |
|
|
|
|
double f = TableLayout.FILL; |
|
|
|
|
Component[] backgroundCompPane = createBackgroundComp(); |
|
|
|
|
Component[] frFont = createFontPane(); |
|
|
|
|
double[] rowSize; |
|
|
|
|
double[] columnSize; |
|
|
|
|
int[][] rowCount; |
|
|
|
@ -93,8 +95,6 @@ public abstract class ButtonDefinePane<T extends Button> extends AbstractDataMod
|
|
|
|
|
rowCount = new int[][]{{1, 1}, {1, 1}, {1, 1}, {1, 1}, {1, 1}}; |
|
|
|
|
n_components = getExtraAdvancedComponents(panel); |
|
|
|
|
} else { |
|
|
|
|
Component[] backgroundCompPane = createBackgroundComp(); |
|
|
|
|
Component[] frFont = createFontPane(); |
|
|
|
|
rowSize = new double[]{p, p, p, p, p, p, p, p}; |
|
|
|
|
columnSize = new double[]{p, f}; |
|
|
|
|
rowCount = new int[][]{{1, 1}, {1, 1}, {1, 1}, {1, 1}, {1, 1}, {1, 1}}; |
|
|
|
|