summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2012-11-13 18:13:22 +0300
committerAndrei Karas <akaras@inbox.ru>2012-11-13 18:13:22 +0300
commit5d6d5498058fcdd8ade87f22ce0559bc8fb3f317 (patch)
treed36b8fce984c9876a2c05f64ac8c70a8882d7e8a /src
parent9139910e08e834d2c92b8bc9e99dce816c3da696 (diff)
downloadplus-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')
-rw-r--r--src/gui/setup_video.cpp7
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)),