mirror of
https://github.com/overte-org/overte.git
synced 2025-08-08 19:56:44 +02:00
Fix misspelled variable names
This commit is contained in:
parent
aa1c9d88dd
commit
054e832cf8
1 changed files with 2 additions and 2 deletions
|
@ -218,8 +218,8 @@ var ExportMenu = function(opts) {
|
||||||
filename = Window.save("Select where to save", filename, "*.svo")
|
filename = Window.save("Select where to save", filename, "*.svo")
|
||||||
if (filename) {
|
if (filename) {
|
||||||
var success = Clipboard.exportModels(filename, x, y, z, s);
|
var success = Clipboard.exportModels(filename, x, y, z, s);
|
||||||
if (!succcess) {
|
if (!success) {
|
||||||
WIndow.alert("Export failed: no models found in selected area.");
|
Window.alert("Export failed: no models found in selected area.");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
self.close();
|
self.close();
|
||||||
|
|
Loading…
Reference in a new issue