mirror of
https://github.com/aseprite/aseprite.git
synced 2024-12-26 18:21:44 +00:00
Enable Remap button only for Indexed images
This commit is contained in:
parent
5fc3b06e8e
commit
9b07e0f9bf
@ -404,13 +404,17 @@ void ColorBar::onPaletteViewRemapColors(const Remap& remap, const Palette* newPa
|
||||
|
||||
void ColorBar::applyRemap(const doc::Remap& remap, const doc::Palette* newPalette, const std::string& actionText)
|
||||
{
|
||||
if (!m_remap) {
|
||||
m_remap.reset(new doc::Remap(remap));
|
||||
m_remapButton.setVisible(true);
|
||||
layout();
|
||||
}
|
||||
else {
|
||||
m_remap->merge(remap);
|
||||
doc::Site site = UIContext::instance()->activeSite();
|
||||
if (site.sprite() &&
|
||||
site.sprite()->pixelFormat() == IMAGE_INDEXED) {
|
||||
if (!m_remap) {
|
||||
m_remap.reset(new doc::Remap(remap));
|
||||
m_remapButton.setVisible(true);
|
||||
layout();
|
||||
}
|
||||
else {
|
||||
m_remap->merge(remap);
|
||||
}
|
||||
}
|
||||
|
||||
setPalette(newPalette, actionText);
|
||||
|
Loading…
Reference in New Issue
Block a user