migrated sound recorder dialog

pull/95/head
jmoenig 2020-04-05 23:23:56 +02:00
rodzic c80e68ea6e
commit b9ca2ad9ba
1 zmienionych plików z 1 dodań i 7 usunięć

Wyświetl plik

@ -9937,24 +9937,18 @@ SoundRecorderDialogMorph.prototype.buildContents = function () {
'record',
new SymbolMorph('circleSolid', 10)
);
this.recordButton.drawNew();
this.recordButton.fixLayout();
this.stopButton = new PushButtonMorph(
this,
'stop',
new SymbolMorph('rectangleSolid', 10)
);
this.stopButton.drawNew();
this.stopButton.fixLayout();
this.playButton = new PushButtonMorph(
this,
'play',
new SymbolMorph('pointRight', 10)
);
this.playButton.drawNew();
this.playButton.fixLayout();
this.buildProgressBar();
@ -9999,7 +9993,7 @@ SoundRecorderDialogMorph.prototype.buildContents = function () {
this.addButton('cancel', 'Cancel');
this.fixLayout();
this.drawNew();
this.rerender();
};
SoundRecorderDialogMorph.prototype.buildProgressBar = function () {