use of com.intellij.find.editorHeaderActions.ShowMoreOptions in project intellij-community by JetBrains.
the class SearchReplaceComponent method createSearchToolbar1.
@NotNull
private ActionToolbarImpl createSearchToolbar1(@NotNull DefaultActionGroup group) {
ActionToolbarImpl toolbar = createToolbar(group);
toolbar.setForceMinimumSize(true);
toolbar.setReservePlaceAutoPopupIcon(false);
toolbar.setSecondaryButtonPopupStateModifier(mySearchToolbar1PopupStateModifier);
toolbar.setSecondaryActionsTooltip("More Options(" + ShowMoreOptions.SHORT_CUT + ")");
new ShowMoreOptions(toolbar, mySearchFieldWrapper);
return toolbar;
}
Aggregations