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:
authorMikkel Krautz <mikkel@krautz.dk>2017-02-28 02:10:20 +0300
committerMikkel Krautz <mikkel@krautz.dk>2017-02-28 02:10:20 +0300
commitd6751e8c64726e1ae219c11a6cedc9956bf19ebd (patch)
tree18a5100015d115e791186e23ab3302291fcfa981 /src/mumble/ManualPlugin.cpp
parent0be68559e3dd84eeac633542d7cdf5ccbb099d65 (diff)
ManualPlugin: re-enable unhinge button for Qt 5.
Unhinging works OK now, after we've migrated the plugin to live inside Mumble. Fixes mumble-voip/mumble#2456
Diffstat (limited to 'src/mumble/ManualPlugin.cpp')
-rw-r--r--src/mumble/ManualPlugin.cpp5
1 files changed, 0 insertions, 5 deletions
diff --git a/src/mumble/ManualPlugin.cpp b/src/mumble/ManualPlugin.cpp
index a5ed2811b..d59d1d4b0 100644
--- a/src/mumble/ManualPlugin.cpp
+++ b/src/mumble/ManualPlugin.cpp
@@ -216,16 +216,11 @@ static void config(void *ptr) {
if (mDlg) {
mDlg->setParent(w, Qt::Dialog);
-#if QT_VERSION < 0x050000
mDlg->qpbUnhinge->setEnabled(true);
-#endif
} else {
mDlg = new Manual(w);
}
-#if QT_VERSION >= 0x050000
- mDlg->qpbUnhinge->setEnabled(false);
-#endif
mDlg->show();
}