Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mumble-voip/mumble.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNicos Gollan <gtdev@spearhead.de>2010-08-24 01:13:34 +0400
committerMikkel Krautz <mikkel@krautz.dk>2010-08-24 01:13:34 +0400
commit82aae299474403a9db198674358245af1847a087 (patch)
treec5fde1c23aec76ac42f8202700f76defdde19fab /src/mumble/OverlayConfig.cpp
parenta53926ebfdb339c769a370210d770e08da6bee22 (diff)
Portable OverlayTest, disable exception on Linux
Diffstat (limited to 'src/mumble/OverlayConfig.cpp')
-rw-r--r--src/mumble/OverlayConfig.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mumble/OverlayConfig.cpp b/src/mumble/OverlayConfig.cpp
index 8201ea300..b85722e6e 100644
--- a/src/mumble/OverlayConfig.cpp
+++ b/src/mumble/OverlayConfig.cpp
@@ -294,7 +294,7 @@ bool OverlayConfig::expert(bool show_expert) {
#ifdef Q_OS_LINUX
Q_UNUSED(show_expert);
- qtwSetup->setTabEnabled(idx, show_expert);
+ qtwSetup->setTabEnabled(idx, false);
#else
qtwSetup->setTabEnabled(idx, show_expert);
#endif