Browse Source

Set default halo brightness to 25%.

tags/v2.0.0
Andrew Belt 3 years ago
parent
commit
d0a5cf7598
2 changed files with 2 additions and 2 deletions
  1. +1
    -1
      src/app/MenuBar.cpp
  2. +1
    -1
      src/settings.cpp

+ 1
- 1
src/app/MenuBar.cpp View File

@@ -456,7 +456,7 @@ struct HaloBrightnessQuantity : Quantity {
return settings::haloBrightness; return settings::haloBrightness;
} }
float getDefaultValue() override { float getDefaultValue() override {
return 0.0;
return 0.25;
} }
float getDisplayValue() override { float getDisplayValue() override {
return getValue() * 100; return getValue() * 100;


+ 1
- 1
src/settings.cpp View File

@@ -28,7 +28,7 @@ bool invertZoom = false;
float cableOpacity = 0.5; float cableOpacity = 0.5;
float cableTension = 0.5; float cableTension = 0.5;
float rackBrightness = 1.0; float rackBrightness = 1.0;
float haloBrightness = 0.0;
float haloBrightness = 0.25;
bool allowCursorLock = true; bool allowCursorLock = true;
KnobMode knobMode = KNOB_MODE_LINEAR; KnobMode knobMode = KNOB_MODE_LINEAR;
bool knobScroll = false; bool knobScroll = false;


Loading…
Cancel
Save