mirror of
https://github.com/overte-org/overte.git
synced 2025-08-06 18:50:00 +02:00
Merge pull request #16325 from zfox23/removeRunClientTest
DEV-2386: Remove 'Run Client Script Test'
This commit is contained in:
commit
eb697f1dc2
4 changed files with 0 additions and 16 deletions
|
@ -640,11 +640,6 @@ Menu::Menu() {
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
|
||||||
// Developer >> Tests >>>
|
|
||||||
MenuWrapper* testMenu = developerMenu->addMenu("Tests");
|
|
||||||
addActionToQMenuAndActionHash(testMenu, MenuOption::RunClientScriptTests, 0, dialogsManager.data(), SLOT(showTestingResults()));
|
|
||||||
|
|
||||||
// Developer > Timing >>>
|
// Developer > Timing >>>
|
||||||
MenuWrapper* timingMenu = developerMenu->addMenu("Timing");
|
MenuWrapper* timingMenu = developerMenu->addMenu("Timing");
|
||||||
MenuWrapper* perfTimerMenu = timingMenu->addMenu("Performance Timer");
|
MenuWrapper* perfTimerMenu = timingMenu->addMenu("Performance Timer");
|
||||||
|
|
|
@ -178,7 +178,6 @@ namespace MenuOption {
|
||||||
const QString ResetAvatarSize = "Reset Avatar Size";
|
const QString ResetAvatarSize = "Reset Avatar Size";
|
||||||
const QString ResetSensors = "Reset Sensors";
|
const QString ResetSensors = "Reset Sensors";
|
||||||
const QString RunningScripts = "Running Scripts...";
|
const QString RunningScripts = "Running Scripts...";
|
||||||
const QString RunClientScriptTests = "Run Client Script Tests";
|
|
||||||
const QString RunTimingTests = "Run Timing Tests";
|
const QString RunTimingTests = "Run Timing Tests";
|
||||||
const QString ScriptedMotorControl = "Enable Scripted Motor Control";
|
const QString ScriptedMotorControl = "Enable Scripted Motor Control";
|
||||||
const QString ShowTrackedObjects = "Show Tracked Objects";
|
const QString ShowTrackedObjects = "Show Tracked Objects";
|
||||||
|
|
|
@ -186,15 +186,6 @@ void DialogsManager::setAddressBarVisible(bool addressBarVisible) {
|
||||||
emit addressBarShown(_addressBarVisible);
|
emit addressBarShown(_addressBarVisible);
|
||||||
}
|
}
|
||||||
|
|
||||||
void DialogsManager::showTestingResults() {
|
|
||||||
if (!_testingDialog) {
|
|
||||||
_testingDialog = new TestingDialog(qApp->getWindow());
|
|
||||||
connect(_testingDialog, SIGNAL(closed()), _testingDialog, SLOT(deleteLater()));
|
|
||||||
}
|
|
||||||
_testingDialog->show();
|
|
||||||
_testingDialog->raise();
|
|
||||||
}
|
|
||||||
|
|
||||||
void DialogsManager::showDomainConnectionDialog() {
|
void DialogsManager::showDomainConnectionDialog() {
|
||||||
// if the dialog already exists we delete it so the connection data is refreshed
|
// if the dialog already exists we delete it so the connection data is refreshed
|
||||||
if (_domainConnectionDialog) {
|
if (_domainConnectionDialog) {
|
||||||
|
|
|
@ -53,7 +53,6 @@ public slots:
|
||||||
void lodTools();
|
void lodTools();
|
||||||
void hmdTools(bool showTools);
|
void hmdTools(bool showTools);
|
||||||
void showDomainConnectionDialog();
|
void showDomainConnectionDialog();
|
||||||
void showTestingResults();
|
|
||||||
void toggleAddressBar();
|
void toggleAddressBar();
|
||||||
|
|
||||||
// Application Update
|
// Application Update
|
||||||
|
|
Loading…
Reference in a new issue