@@ -2267,11 +2267,11 @@ class SCMInputWidget {
22672267 const lineHeight = this . computeLineHeight ( fontSize ) ;
22682268 const { top, bottom } = this . inputEditor . getOption ( EditorOption . padding ) ;
22692269
2270- const inputMinLinesConfig = this . configurationService . getValue ( 'scm.inputMinLines ' ) ;
2270+ const inputMinLinesConfig = this . configurationService . getValue ( 'scm.inputMinLineCount ' ) ;
22712271 const inputMinLines = typeof inputMinLinesConfig === 'number' ? clamp ( inputMinLinesConfig , 1 , 50 ) : 1 ;
22722272 const editorMinHeight = inputMinLines * lineHeight + top + bottom ;
22732273
2274- const inputMaxLinesConfig = this . configurationService . getValue ( 'scm.inputMaxLines ' ) ;
2274+ const inputMaxLinesConfig = this . configurationService . getValue ( 'scm.inputMaxLineCount ' ) ;
22752275 const inputMaxLines = typeof inputMaxLinesConfig === 'number' ? clamp ( inputMaxLinesConfig , 1 , 50 ) : 10 ;
22762276 const editorMaxHeight = inputMaxLines * lineHeight + top + bottom ;
22772277
@@ -2648,8 +2648,8 @@ export class SCMViewPane extends ViewPane {
26482648 e . affectsConfiguration ( 'scm.alwaysShowRepositories' ) ||
26492649 e . affectsConfiguration ( 'scm.showIncomingChanges' ) ||
26502650 e . affectsConfiguration ( 'scm.showOutgoingChanges' ) ||
2651- e . affectsConfiguration ( 'scm.inputMinLines ' ) ||
2652- e . affectsConfiguration ( 'scm.inputMaxLines ' ) ) {
2651+ e . affectsConfiguration ( 'scm.inputMinLineCount ' ) ||
2652+ e . affectsConfiguration ( 'scm.inputMaxLineCount ' ) ) {
26532653 this . _showActionButton = this . configurationService . getValue < boolean > ( 'scm.showActionButton' ) ;
26542654 this . _alwaysShowRepositories = this . configurationService . getValue < boolean > ( 'scm.alwaysShowRepositories' ) ;
26552655 this . _showIncomingChanges = this . configurationService . getValue < ShowChangesSetting > ( 'scm.showIncomingChanges' ) ;
0 commit comments