Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -417,7 +417,7 @@ public void addGuiOptionsTab(CTabFolder wTabFolder) {
}

// General appearance section - using ExpandBar
ExpandBar appearanceExpandBar = new ExpandBar(wLookComp, SWT.V_SCROLL);
ExpandBar appearanceExpandBar = new ExpandBar(wLookComp, SWT.NONE);
PropsUi.setLook(appearanceExpandBar);

FormData fdAppearanceExpandBar = new FormData();
Expand Down Expand Up @@ -554,7 +554,7 @@ public void addGuiOptionsTab(CTabFolder wTabFolder) {
lastControl = appearanceExpandBar;

// Fonts section - using ExpandBar
ExpandBar fontsExpandBar = new ExpandBar(wLookComp, SWT.V_SCROLL);
ExpandBar fontsExpandBar = new ExpandBar(wLookComp, SWT.NONE);
PropsUi.setLook(fontsExpandBar);

FormData fdFontsExpandBar = new FormData();
Expand Down Expand Up @@ -663,7 +663,7 @@ public void addGuiOptionsTab(CTabFolder wTabFolder) {
lastControl = fontsExpandBar;

// Pipeline & Workflow canvas section - using ExpandBar
ExpandBar canvasExpandBar = new ExpandBar(wLookComp, SWT.V_SCROLL);
ExpandBar canvasExpandBar = new ExpandBar(wLookComp, SWT.NONE);
PropsUi.setLook(canvasExpandBar);

FormData fdCanvasExpandBar = new FormData();
Expand Down Expand Up @@ -817,7 +817,7 @@ public void addGuiOptionsTab(CTabFolder wTabFolder) {
lastControl = canvasExpandBar;

// Auto-layout section - using ExpandBar
ExpandBar autoLayoutExpandBar = new ExpandBar(wLookComp, SWT.V_SCROLL);
ExpandBar autoLayoutExpandBar = new ExpandBar(wLookComp, SWT.NONE);
PropsUi.setLook(autoLayoutExpandBar);

FormData fdAutoLayoutExpandBar = new FormData();
Expand Down Expand Up @@ -943,7 +943,7 @@ public void addGuiOptionsTab(CTabFolder wTabFolder) {
lastControl = autoLayoutExpandBar;

// Tables & grids section - using ExpandBar
ExpandBar tablesExpandBar = new ExpandBar(wLookComp, SWT.V_SCROLL);
ExpandBar tablesExpandBar = new ExpandBar(wLookComp, SWT.NONE);
PropsUi.setLook(tablesExpandBar);

FormData fdTablesExpandBar = new FormData();
Expand Down Expand Up @@ -1031,7 +1031,7 @@ public void addGuiOptionsTab(CTabFolder wTabFolder) {
lastControl = tablesExpandBar;

// Metrics panel section - using ExpandBar
ExpandBar metricsPanelExpandBar = new ExpandBar(wLookComp, SWT.V_SCROLL);
ExpandBar metricsPanelExpandBar = new ExpandBar(wLookComp, SWT.NONE);
PropsUi.setLook(metricsPanelExpandBar);

FormData fdMetricsPanelExpandBar = new FormData();
Expand Down
Loading