modified soapy menu

This commit is contained in:
Ryzerth 2020-12-14 17:18:43 +01:00
parent c3d39029b8
commit 2c84123158
3 changed files with 5 additions and 5 deletions

View File

@ -32,6 +32,7 @@ namespace credits {
// Contributors
ImGui::Text("Contributors");
ImGui::BulletText("Ryzerth (Creator)");
ImGui::BulletText("Alexsey Shestacov");
ImGui::BulletText("aosync");
ImGui::BulletText("Benjamin Kyd");
ImGui::BulletText("Tobias Mädel");

View File

@ -44,6 +44,7 @@ namespace LoadingScreen {
// Contributors
ImGui::Text("Contributors");
ImGui::BulletText("Ryzerth (Creator)");
ImGui::BulletText("Alexsey Shestacov");
ImGui::BulletText("aosync");
ImGui::BulletText("Benjamin Kyd");
ImGui::BulletText("Tobias Mädel");

View File

@ -288,16 +288,14 @@ private:
config.release(true);
}
ImGui::Text("Sample rate");
ImGui::SameLine();
ImGui::SetNextItemWidth(menuWidth - ImGui::GetCursorPosX());
if (ImGui::Combo(CONCAT("##_sr_select_", _this->name), &_this->srId, _this->txtSrList.c_str())) {
_this->selectSampleRate(_this->sampleRates[_this->srId]);
_this->saveCurrent();
}
if (ImGui::Button(CONCAT("Refresh##_dev_select_", _this->name),
ImVec2(menuWidth - ImGui::GetCursorPosX(), 0.0))) {
ImGui::SameLine();
float refreshBtnWdith = menuWidth - ImGui::GetCursorPosX();
if (ImGui::Button(CONCAT("Refresh##_dev_select_", _this->name), ImVec2(refreshBtnWdith, 0))) {
_this->refresh();
_this->selectDevice(config.conf["device"]);
}