From fc8152fe3116cbd77967bd4f8686ddda5c0d6fcb Mon Sep 17 00:00:00 2001 From: Andrei Karas Date: Sun, 4 Nov 2012 19:54:49 +0300 Subject: Hide "detect best mode" button under Android. --- src/gui/setup_video.cpp | 6 +++++- src/gui/setup_video.h | 2 ++ 2 files changed, 7 insertions(+), 1 deletion(-) (limited to 'src') diff --git a/src/gui/setup_video.cpp b/src/gui/setup_video.cpp index 747478dbb..78cdd4ce2 100644 --- a/src/gui/setup_video.cpp +++ b/src/gui/setup_video.cpp @@ -222,7 +222,9 @@ Setup_Video::Setup_Video(const Widget2 *const widget) : mFpsLabel(new Label(this)), mAltFpsSlider(new Slider(2, 160)), mAltFpsLabel(new Label(this, _("Alt FPS limit: "))), +#ifndef ANDROID mDetectButton(new Button(this, _("Detect best mode"), "detect", this)), +#endif mDialog(nullptr) { setName(_("Video")); @@ -302,7 +304,9 @@ Setup_Video::Setup_Video(const Widget2 *const widget) : place(0, 7, mAltFpsSlider); place(1, 7, mAltFpsLabel).setPadding(3); +#ifndef ANDROID place(0, 8, mDetectButton); +#endif int width = 600; @@ -545,7 +549,7 @@ void Setup_Video::action(const gcn::ActionEvent &event) { config.setValue("noframe", mNoFrameCheckBox->isSelected()); } -#ifdef USE_OPENGL +#if defined(USE_OPENGL) && !defined(ANDROID) else if (id == "detect") { TestMain *test = graphicsManager.startDetection(); diff --git a/src/gui/setup_video.h b/src/gui/setup_video.h index 4b34adb90..59c293945 100644 --- a/src/gui/setup_video.h +++ b/src/gui/setup_video.h @@ -87,7 +87,9 @@ class Setup_Video final : public SetupTab, public gcn::KeyListener Slider *mAltFpsSlider; Label *mAltFpsLabel; +#ifndef ANDROID Button *mDetectButton; +#endif TextDialog *mDialog; }; -- cgit v1.2.3-70-g09d2