Hide XInput bypass on non-Windows OSes

Follow-up to #6950. This option is a no-op on other OSes and only serves to spread confusion there.
This commit is contained in:
Valeri 2021-09-18 14:41:51 +03:00 committed by GitHub
parent 6d7801deb7
commit b54bf126f7
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -88,6 +88,10 @@ ConfigureInputAdvanced::ConfigureInputAdvanced(QWidget* parent)
connect(ui->buttonMotionTouch, &QPushButton::clicked, this,
&ConfigureInputAdvanced::CallMotionTouchConfigDialog);
#ifndef _WIN32
ui->enable_raw_input->setVisible(false);
#endif
LoadConfiguration();
}