mirror of
https://github.com/AlexandreRouma/SDRPlusPlus.git
synced 2025-01-23 16:34:43 +01:00
Added zimm to contrib list
This commit is contained in:
parent
78f079ca84
commit
ecbb451763
@ -18,7 +18,8 @@ namespace sdrpp_credits {
|
|||||||
"Raov",
|
"Raov",
|
||||||
"Starman0620",
|
"Starman0620",
|
||||||
"Szymon Zakrent",
|
"Szymon Zakrent",
|
||||||
"Tobias Mädel"
|
"Tobias Mädel",
|
||||||
|
"Zimm"
|
||||||
};
|
};
|
||||||
|
|
||||||
const char* libraries[] = {
|
const char* libraries[] = {
|
||||||
|
@ -202,7 +202,9 @@ private:
|
|||||||
editedListName = nameBuf;
|
editedListName = nameBuf;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (strlen(nameBuf) == 0) { style::beginDisabled(); }
|
bool alreadyExists = (std::find(listNames.begin(), listNames.end(), editedListName) != listNames.end());
|
||||||
|
|
||||||
|
if (strlen(nameBuf) == 0 || alreadyExists) { style::beginDisabled(); }
|
||||||
if (ImGui::Button("Apply")) {
|
if (ImGui::Button("Apply")) {
|
||||||
open = false;
|
open = false;
|
||||||
|
|
||||||
@ -218,7 +220,7 @@ private:
|
|||||||
refreshLists();
|
refreshLists();
|
||||||
loadByName(editedListName);
|
loadByName(editedListName);
|
||||||
}
|
}
|
||||||
if (strlen(nameBuf) == 0) { style::endDisabled(); }
|
if (strlen(nameBuf) == 0 || alreadyExists) { style::endDisabled(); }
|
||||||
ImGui::SameLine();
|
ImGui::SameLine();
|
||||||
if (ImGui::Button("Cancel")) {
|
if (ImGui::Button("Cancel")) {
|
||||||
open = false;
|
open = false;
|
||||||
|
@ -338,6 +338,7 @@ I will soon publish a contributing.md listing the code style to use.
|
|||||||
* [Syne Ardwin (WI9SYN)](https://esaille.me/)
|
* [Syne Ardwin (WI9SYN)](https://esaille.me/)
|
||||||
* [Szymon Zakrent](https://github.com/zakrent)
|
* [Szymon Zakrent](https://github.com/zakrent)
|
||||||
* [Tobias Mädel](https://github.com/Manawyrm)
|
* [Tobias Mädel](https://github.com/Manawyrm)
|
||||||
|
* [Zimm](https://github.com/invader-zimm)
|
||||||
|
|
||||||
|
|
||||||
## Libraries used
|
## Libraries used
|
||||||
|
Loading…
x
Reference in New Issue
Block a user