summaryrefslogtreecommitdiff
path: root/tools/editor
diff options
context:
space:
mode:
authorhondres <liu.gam3@gmail.com>2016-02-11 15:39:41 +0100
committerhondres <liu.gam3@gmail.com>2016-02-11 15:39:41 +0100
commit0065be1bcd9cbb94bcaad49b6033518284aa29bf (patch)
treee9de0438a53c69b0d7f76d098e7bd426d78d01ef /tools/editor
parent274f57feea5374500f513802f92efc08a165c8d3 (diff)
fix joystick related label text in project settings
Diffstat (limited to 'tools/editor')
-rw-r--r--tools/editor/project_settings.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/editor/project_settings.cpp b/tools/editor/project_settings.cpp
index 873e397010..22e93c5a95 100644
--- a/tools/editor/project_settings.cpp
+++ b/tools/editor/project_settings.cpp
@@ -297,7 +297,7 @@ void ProjectSettings::_add_item(int p_item){
case InputEvent::JOYSTICK_MOTION: {
device_id->set_val(0);
- device_index_label->set_text("Joy Button Axis:");
+ device_index_label->set_text("Joystick Axis Index:");
device_index->clear();
for(int i=0;i<JOY_AXIS_MAX*2;i++) {
@@ -322,7 +322,7 @@ void ProjectSettings::_add_item(int p_item){
case InputEvent::JOYSTICK_BUTTON: {
device_id->set_val(0);
- device_index_label->set_text("Joy Button Index:");
+ device_index_label->set_text("Joystick Button Index:");
device_index->clear();
for(int i=0;i<JOY_BUTTON_MAX;i++) {