diff options
author | Andrei Karas <akaras@inbox.ru> | 2011-11-09 03:22:06 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2011-11-09 03:22:06 +0300 |
commit | 96881273472a9ccbf8b43391d6ffe8e8df1bfb87 (patch) | |
tree | b0960cb0443950da01a39ba176fbbdc8b167116c | |
parent | 955d2dab6f5e75c913bdfa15ed2d6b9c3cdf3338 (diff) | |
download | plus-96881273472a9ccbf8b43391d6ffe8e8df1bfb87.tar.gz plus-96881273472a9ccbf8b43391d6ffe8e8df1bfb87.tar.bz2 plus-96881273472a9ccbf8b43391d6ffe8e8df1bfb87.tar.xz plus-96881273472a9ccbf8b43391d6ffe8e8df1bfb87.zip |
Fix jpoystick calibration message.
-rw-r--r-- | src/gui/setup_joystick.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/gui/setup_joystick.cpp b/src/gui/setup_joystick.cpp index a1f3c8cea..f0899be3f 100644 --- a/src/gui/setup_joystick.cpp +++ b/src/gui/setup_joystick.cpp @@ -142,7 +142,8 @@ void Setup_Joystick::action(const gcn::ActionEvent &event) else { mCalibrateButton->setCaption(_("Stop")); - mCalibrateLabel->setCaption(_("Rotate the stick")); + mCalibrateLabel->setCaption( + _("Rotate the stick and dont press buttons")); joystick->startCalibration(); } } |