File tree Expand file tree Collapse file tree 3 files changed +9
-5
lines changed
media/programflow-visualization
programflow-visualization/frontend Expand file tree Collapse file tree 3 files changed +9
-5
lines changed Original file line number Diff line number Diff line change @@ -192,3 +192,7 @@ body {
192
192
.traceback-text {
193
193
color : red;
194
194
}
195
+
196
+ # bottom-area button {
197
+ line-height : 18px ;
198
+ }
Original file line number Diff line number Diff line change @@ -364,7 +364,7 @@ export function activate(context: vscode.ExtensionContext) {
364
364
vscode . window . showWarningMessage ( 'Not a python file' ) ;
365
365
return ;
366
366
}
367
- vscode . window . activeTextEditor ?. document . save ( ) ;
367
+ await vscode . window . activeTextEditor ?. document . save ( ) ;
368
368
const pyCmd = getPythonCmd ( pyExt ) ;
369
369
let verboseOpt = "" ;
370
370
if ( isDebug ( context ) ) {
Original file line number Diff line number Diff line change @@ -169,10 +169,10 @@ export class VisualizationPanel {
169
169
<p id="traceMax">/?</p>
170
170
</div>
171
171
<div class="row margin-vertical">
172
- <button class="margin-horizontal" id="firstButton" type="button" onclick="onClick('first')">First </button>
173
- <button class="margin-horizontal" id="prevButton" type="button" onclick="onClick('prev')">Prev </button>
174
- <button class="margin-horizontal" id="nextButton" type="button" onclick="onClick('next')">Next </button>
175
- <button class="margin-horizontal" id="lastButton" type="button" onclick="onClick('last')">Last </button>
172
+ <button class="margin-horizontal" id="firstButton" type="button" onclick="onClick('first')">⏮ </button>
173
+ <button class="margin-horizontal" id="prevButton" type="button" onclick="onClick('prev')">◀ </button>
174
+ <button class="margin-horizontal" id="nextButton" type="button" onclick="onClick('next')">▶ </button>
175
+ <button class="margin-horizontal" id="lastButton" type="button" onclick="onClick('last')">⏭ </button>
176
176
</div>
177
177
</div>
178
178
<div class="column floating-right">
You can’t perform that action at this time.
0 commit comments