use of com.intellij.openapi.ui.TextFieldWithBrowseButton in project intellij-plugins by StepicOrg.
the class StepikPyProjectGenerator method setLocation.
private void setLocation(@NotNull String location) {
if (keepLocation) {
return;
}
TextFieldWithBrowseButton locationField = getLocationField();
if (locationField == null) {
return;
}
locationSetting = true;
locationField.setText(location);
locationSetting = false;
}
Aggregations