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
Maximilian Wittmer authored and Maximilian Wittmer committed Jul 1, 2024
1 parent 529474b commit 153c5d7
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 153c5d7

Please sign in to comment.