mirror of
https://github.com/aseprite/aseprite.git
synced 2025-01-14 03:40:55 +00:00
ColorBar: change default FG/BG colors to white and black (RGB)
This commit is contained in:
parent
e63831c87f
commit
330602a78c
@ -79,8 +79,8 @@ ColorBar::ColorBar(int align)
|
||||
: Box(align)
|
||||
, m_paletteButton("Edit Palette")
|
||||
, m_paletteView(false)
|
||||
, m_fgColor(app::Color::fromIndex(15), IMAGE_INDEXED)
|
||||
, m_bgColor(app::Color::fromIndex(0), IMAGE_INDEXED)
|
||||
, m_fgColor(app::Color::fromRgb(255, 255, 255), IMAGE_RGB)
|
||||
, m_bgColor(app::Color::fromRgb(0, 0, 0), IMAGE_RGB)
|
||||
, m_lock(false)
|
||||
{
|
||||
m_instance = this;
|
||||
|
Loading…
Reference in New Issue
Block a user