Skip to content

Commit

Permalink
Find/Replace overlay: reorder buttons
Browse files Browse the repository at this point in the history
reorder buttons such that the "whole words" button is not in front,
making the taborder more intuitive in the case that whole word search is
not supported in the current state.

fixes #1998
  • Loading branch information
Wittmaxi authored and HeikoKlare committed Jul 3, 2024
1 parent 7011d80 commit d67d6c7
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -437,9 +437,9 @@ private void createSearchTools() {
searchTools = new AccessibleToolBar(searchContainer);
GridDataFactory.fillDefaults().grab(false, true).align(GridData.CENTER, GridData.END).applyTo(searchTools);

createWholeWordsButton();
createCaseSensitiveButton();
createRegexSearchButton();
createWholeWordsButton();
createAreaSearchButton();

@SuppressWarnings("unused")
Expand Down

0 comments on commit d67d6c7

Please sign in to comment.