Fix misspelled variable names

This commit is contained in:
Ryan Huffman 2014-07-31 11:32:17 -07:00
parent aa1c9d88dd
commit 054e832cf8

View file

@ -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();