mirror of
https://github.com/HarbourMasters/Shipwright.git
synced 2024-11-22 01:12:19 -05:00
Item Tracker Combo Button Fix (#3231)
* let words be small * change >=1 to >0
This commit is contained in:
parent
82d87ff680
commit
b1f0c964d2
@ -240,7 +240,7 @@ namespace UIWidgets {
|
||||
std::string comboName = std::string("##") + std::string(cvarName);
|
||||
if (ImGui::BeginCombo(comboName.c_str(), comboArray[selected])) {
|
||||
for (uint8_t i = 0; i < comboArray.size(); i++) {
|
||||
if (strlen(comboArray[i]) > 1) {
|
||||
if (strlen(comboArray[i]) > 0) {
|
||||
if (ImGui::Selectable(comboArray[i], i == selected)) {
|
||||
CVarSetInteger(cvarName, i);
|
||||
selected = i;
|
||||
|
Loading…
Reference in New Issue
Block a user