From cbe0d85af68580a65d05e28dcce96eac4d09d968 Mon Sep 17 00:00:00 2001 From: Chris Malley Date: Mon, 14 Jan 2019 18:41:16 -0700 Subject: [PATCH] big ComboBox refactors, https://github.com/phetsims/sun/issues/430, https://github.com/phetsims/sun/issues/428, https://github.com/phetsims/sun/issues/419 --- js/least-squares-regression/view/DataSetComboBox.js | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/js/least-squares-regression/view/DataSetComboBox.js b/js/least-squares-regression/view/DataSetComboBox.js index cce643b..f00f0e4 100644 --- a/js/least-squares-regression/view/DataSetComboBox.js +++ b/js/least-squares-regression/view/DataSetComboBox.js @@ -35,10 +35,9 @@ define( function( require ) { ComboBox.call( this, items, selectedDataSetProperty, dataSetListParent, { listPosition: 'below', - itemYMargin: 2, - itemHighlightFill: LeastSquaresRegressionConstants.ITEM_HIGHLIGHT_FILL, + highlightFill: LeastSquaresRegressionConstants.ITEM_HIGHLIGHT_FILL, buttonLineWidth: 1, - buttonCornerRadius: LeastSquaresRegressionConstants.SMALL_PANEL_CORNER_RADIUS + cornerRadius: LeastSquaresRegressionConstants.SMALL_PANEL_CORNER_RADIUS } ); }