File tree Expand file tree Collapse file tree 2 files changed +7
-6
lines changed
src/datascience-ui/history-react Expand file tree Collapse file tree 2 files changed +7
-6
lines changed Original file line number Diff line number Diff line change 1+ Switch order of restart and cancel buttons in interactive window to be consistent with ordering in notebook toolbar.
Original file line number Diff line number Diff line change @@ -135,26 +135,26 @@ ${buildSettingsCss(this.props.settings)}`}</style>
135135 </ ImageButton >
136136 < ImageButton
137137 baseTheme = { this . props . baseTheme }
138- onClick = { this . props . interruptKernel }
138+ onClick = { this . props . restartKernel }
139139 disabled = { this . props . busy }
140- tooltip = { getLocString ( 'DataScience.interruptKernel ' , 'Interrupt IPython kernel' ) }
140+ tooltip = { getLocString ( 'DataScience.restartServer ' , 'Restart IPython kernel' ) }
141141 >
142142 < Image
143143 baseTheme = { this . props . baseTheme }
144144 class = "image-button-image"
145- image = { ImageName . Interrupt }
145+ image = { ImageName . Restart }
146146 />
147147 </ ImageButton >
148148 < ImageButton
149149 baseTheme = { this . props . baseTheme }
150- onClick = { this . props . restartKernel }
150+ onClick = { this . props . interruptKernel }
151151 disabled = { this . props . busy }
152- tooltip = { getLocString ( 'DataScience.restartServer ' , 'Restart IPython kernel' ) }
152+ tooltip = { getLocString ( 'DataScience.interruptKernel ' , 'Interrupt IPython kernel' ) }
153153 >
154154 < Image
155155 baseTheme = { this . props . baseTheme }
156156 class = "image-button-image"
157- image = { ImageName . Restart }
157+ image = { ImageName . Interrupt }
158158 />
159159 </ ImageButton >
160160 < ImageButton
You can’t perform that action at this time.
0 commit comments