From cfba5752cecf9ecf8607ade2514d20bc51b8825c Mon Sep 17 00:00:00 2001 From: Atlante45 Date: Mon, 12 Oct 2015 15:02:53 -0700 Subject: [PATCH] Change checkbox text --- interface/src/Application.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/interface/src/Application.cpp b/interface/src/Application.cpp index a553eb4e9e..9a6e2fff4d 100644 --- a/interface/src/Application.cpp +++ b/interface/src/Application.cpp @@ -4079,7 +4079,7 @@ bool Application::askToUploadAsset(const QString& filename) { // Option to drop model in world for models if (filename.endsWith(FBX_EXTENSION) || filename.endsWith(OBJ_EXTENSION)) { auto checkBox = new QCheckBox(&messageBox); - checkBox->setText("Drop model in world."); + checkBox->setText("Add to scene"); messageBox.setCheckBox(checkBox); }