Browse Source

LibGUI: Make color picker opacity sliders react to the chosen color

networkException 2 years ago
parent
commit
c8f9bfe026
1 changed files with 1 additions and 0 deletions
  1. 1 0
      Userland/Libraries/LibGUI/ColorPicker.cpp

+ 1 - 0
Userland/Libraries/LibGUI/ColorPicker.cpp

@@ -291,6 +291,7 @@ void ColorPicker::build_ui_custom(Widget& root_container)
             return;
         }
 
+        m_alpha->set_base_color(color);
         m_color = color;
         update_color_widgets();
     };