Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--org.eclipse.egit.ui/src/org/eclipse/egit/ui/internal/preferences/GitDecoratorPreferencePage.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/org.eclipse.egit.ui/src/org/eclipse/egit/ui/internal/preferences/GitDecoratorPreferencePage.java b/org.eclipse.egit.ui/src/org/eclipse/egit/ui/internal/preferences/GitDecoratorPreferencePage.java
index 5dcd80b76b..d8091a2faf 100644
--- a/org.eclipse.egit.ui/src/org/eclipse/egit/ui/internal/preferences/GitDecoratorPreferencePage.java
+++ b/org.eclipse.egit.ui/src/org/eclipse/egit/ui/internal/preferences/GitDecoratorPreferencePage.java
@@ -382,7 +382,7 @@ public class GitDecoratorPreferencePage extends PreferencePage implements
}
final Scale scale = new Scale(composite, SWT.HORIZONTAL);
- scale.setLayoutData(SWTUtils.createHVFillGridData());
+ scale.setLayoutData(SWTUtils.createHFillGridData());
scale.setMaximum(values.length - 1);
scale.setMinimum(0);
scale.setIncrement(1);

Back to the top