Fixed curly braces for no particular reason

This commit is contained in:
Martin Opat 2025-01-15 19:45:06 +01:00
parent 4b95bb728d
commit acc1705081
1 changed files with 4 additions and 8 deletions

View File

@ -59,10 +59,8 @@ void Widget::tick(double fps) {
// the default entry is set in the constructor, so if you want that to be a specific entry just change it // the default entry is set in the constructor, so if you want that to be a specific entry just change it
// whatever value is selected here is available on the gpu as d_tfComboSelected. // whatever value is selected here is available on the gpu as d_tfComboSelected.
const char* items[] = {"Opacity - gradient", "Opacity - sigmoid", "Opacity - constant", "..."}; const char* items[] = {"Opacity - gradient", "Opacity - sigmoid", "Opacity - constant", "..."};
if (ImGui::BeginCombo("ComboBox for transferFunction", items[this->tfComboSelected])) if (ImGui::BeginCombo("ComboBox for transferFunction", items[this->tfComboSelected])) {
{ for (int n = 0; n < IM_ARRAYSIZE(items); n++) {
for (int n = 0; n < IM_ARRAYSIZE(items); n++)
{
const bool is_selected = (this->tfComboSelected == n); const bool is_selected = (this->tfComboSelected == n);
if (ImGui::Selectable(items[n], is_selected)) if (ImGui::Selectable(items[n], is_selected))
this->tfComboSelected = n; this->tfComboSelected = n;
@ -74,10 +72,8 @@ void Widget::tick(double fps) {
// Same comments as above apply // Same comments as above apply
const char* items2[] = {"Python-like", "BPR", "Greyscale", "..."}; const char* items2[] = {"Python-like", "BPR", "Greyscale", "..."};
if (ImGui::BeginCombo("ComboBox for color map", items2[this->tfComboSelectedColor])) if (ImGui::BeginCombo("ComboBox for color map", items2[this->tfComboSelectedColor])) {
{ for (int n = 0; n < IM_ARRAYSIZE(items2); n++) {
for (int n = 0; n < IM_ARRAYSIZE(items2); n++)
{
const bool is_selected = (this->tfComboSelectedColor == n); const bool is_selected = (this->tfComboSelectedColor == n);
if (ImGui::Selectable(items2[n], is_selected)) if (ImGui::Selectable(items2[n], is_selected))
this->tfComboSelectedColor = n; this->tfComboSelectedColor = n;