diff options
author | Andrei Karas <akaras@inbox.ru> | 2012-11-13 18:13:22 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2012-11-13 18:13:22 +0300 |
commit | 5d6d5498058fcdd8ade87f22ce0559bc8fb3f317 (patch) | |
tree | d36b8fce984c9876a2c05f64ac8c70a8882d7e8a /src/gui | |
parent | 9139910e08e834d2c92b8bc9e99dce816c3da696 (diff) | |
download | plus-5d6d5498058fcdd8ade87f22ce0559bc8fb3f317.tar.gz plus-5d6d5498058fcdd8ade87f22ce0559bc8fb3f317.tar.bz2 plus-5d6d5498058fcdd8ade87f22ce0559bc8fb3f317.tar.xz plus-5d6d5498058fcdd8ade87f22ce0559bc8fb3f317.zip |
For android change option "custom cursor" to "show cursor"
Diffstat (limited to 'src/gui')
-rw-r--r-- | src/gui/setup_video.cpp | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/src/gui/setup_video.cpp b/src/gui/setup_video.cpp index eb2d51c56..d80b3ceb6 100644 --- a/src/gui/setup_video.cpp +++ b/src/gui/setup_video.cpp @@ -214,7 +214,12 @@ Setup_Video::Setup_Video(const Widget2 *const widget) : mModeListModel(new ModeListModel), mModeList(new ListBox(widget, mModeListModel)), mFsCheckBox(new CheckBox(this, _("Full screen"), mFullScreenEnabled)), - mCustomCursorCheckBox(new CheckBox(this, _("Custom cursor"), + mCustomCursorCheckBox(new CheckBox(this, +#ifdef ANDROID + _("Show cursor"), +#else + _("Custom cursor"), +#endif mCustomCursorEnabled)), mEnableResizeCheckBox(new CheckBox(this, _("Enable resize"), mEnableResize)), |