From 6d821ad6a4a700fc8d3b5f0bf285ac0d48be7aca Mon Sep 17 00:00:00 2001 From: twinaphex Date: Mon, 3 Oct 2016 06:53:00 +0200 Subject: [PATCH] Enable mouse by default now for Linux/OSX/Windows --- config.def.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config.def.h b/config.def.h index ad5e9e8cc2..37e65864f1 100644 --- a/config.def.h +++ b/config.def.h @@ -372,7 +372,7 @@ static const bool def_history_list_enable = true; static const unsigned int def_user_language = 0; -#if (defined(_WIN32) && !defined(_XBOX)) +#if (defined(_WIN32) && !defined(_XBOX)) || (defined(__linux) && !defined(ANDROID)) || (defined(__MACH__) && !defined(IOS)) static const bool def_mouse_enable = true; #else static const bool def_mouse_enable = false;