1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 16:17:45 +00:00

LibGUI: Add spinbox for alpha channel in ColorPicker

This commit is contained in:
LepkoQQ 2020-08-25 22:56:57 +02:00 committed by Andreas Kling
parent b10dde70b7
commit 9e75c124a8
2 changed files with 17 additions and 4 deletions

View file

@ -63,6 +63,7 @@ private:
RefPtr<SpinBox> m_red_spinbox;
RefPtr<SpinBox> m_green_spinbox;
RefPtr<SpinBox> m_blue_spinbox;
RefPtr<SpinBox> m_alpha_spinbox;
};
}