Revision aaf58910
Added by Patrick Plitzner over 7 years ago
eu.etaxonomy.taxeditor.store/src/main/java/eu/etaxonomy/taxeditor/preference/OrderPreferences.java | ||
---|---|---|
57 | 57 |
Composite composite = new Composite(parent, SWT.NULL); |
58 | 58 |
composite.setLayout(new GridLayout()); |
59 | 59 |
|
60 |
Label label = new Label(composite, SWT.NONE); |
|
61 |
label.setText("Sorting"); |
|
62 |
|
|
63 |
|
|
60 | 64 |
isNaturalOrderActivated = PreferencesUtil.getSortNodesNaturally(); |
61 | 65 |
final Button activateNaturalOrderCheckButton = new Button(composite, SWT.RADIO); |
62 | 66 |
activateNaturalOrderCheckButton.setText("Enable Natural Order"); |
... | ... | |
64 | 68 |
|
65 | 69 |
isRankAndNameOrderActivated = !PreferencesUtil.getSortNodesStrictlyAlphabetically() && !PreferencesUtil.getSortNodesNaturally(); |
66 | 70 |
final Button activateRankAndNameOrderActivatedCheckButton = new Button(composite, SWT.RADIO); |
67 |
activateRankAndNameOrderActivatedCheckButton.setText("Enable Rank and Aplhabetical Order");
|
|
71 |
activateRankAndNameOrderActivatedCheckButton.setText("Enable Rank and Alphabetical Order");
|
|
68 | 72 |
activateRankAndNameOrderActivatedCheckButton.setSelection(isRankAndNameOrderActivated); |
69 | 73 |
|
70 | 74 |
isAlphabeticalOrderActivated = PreferencesUtil.getSortNodesStrictlyAlphabetically(); |
Also available in: Unified diff
ref #6347 fix typo and add label