mirror of
https://thingvellir.net/git/overte
synced 2025-03-27 23:52:03 +01:00
Fix capitalization of import and export dialog titles
This commit is contained in:
parent
3780b18cc0
commit
0fe93a1e89
1 changed files with 2 additions and 2 deletions
|
@ -1222,7 +1222,7 @@ function handeMenuEvent(menuItem) {
|
|||
Window.alert("No entities have been selected.");
|
||||
} else {
|
||||
var filename = "entities__" + Window.location.hostname + ".svo.json";
|
||||
filename = Window.save("Select where to save", filename, "*.json")
|
||||
filename = Window.save("Select Where to Save", filename, "*.json")
|
||||
if (filename) {
|
||||
var success = Clipboard.exportEntities(filename, selectionManager.selections);
|
||||
if (!success) {
|
||||
|
@ -1234,7 +1234,7 @@ function handeMenuEvent(menuItem) {
|
|||
|
||||
var importURL = null;
|
||||
if (menuItem == "Import Entities") {
|
||||
var fullPath = Window.browse("Select models to import", "", "*.json");
|
||||
var fullPath = Window.browse("Select Model to Import", "", "*.json");
|
||||
if (fullPath) {
|
||||
importURL = "file:///" + fullPath;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue