| 102 | } |
| 103 | |
| 104 | void TabManager::openConfiguration() |
| 105 | { |
| 106 | _configTab->initializeInterface(); |
| 107 | int index = _stackedWidget->indexOf(_configTab); |
| 108 | if (index == -1) |
| 109 | index = _stackedWidget->addWidgetWithTab(_configTab, ":/icons/settings.svg", tr("Settings"), false); |
| 110 | _stackedWidget->setCurrentIndex(index); |
| 111 | } |
| 112 | |
| 113 | void TabManager::openNewSoundfont() |
| 114 | { |
no test coverage detected