mirror of
https://github.com/rustdesk/rustdesk
synced 2026-05-24 01:18:21 +00:00
fix show_progress
This commit is contained in:
parent
4f0a58a691
commit
362aa9a8ff
1 changed files with 2 additions and 1 deletions
|
|
@ -161,7 +161,8 @@ class MsgboxComponent: Reactor.Component {
|
|||
}
|
||||
var values = this.getValues();
|
||||
if (this.callback) {
|
||||
var err = this.callback(values, this.show_progress);
|
||||
var self = this;
|
||||
var err = this.callback(values, function(a=1, b='') { self.show_progress(a, b); });
|
||||
if (!err) {
|
||||
this.close();
|
||||
return;
|
||||
|
|
|
|||
Loading…
Reference in a new issue