mirror of
https://github.com/aseprite/aseprite.git
synced 2025-02-21 12:40:34 +00:00
Don't change grid settings from Preferences if they aren't modified (fix #3479)
This commit is contained in:
parent
7b63651775
commit
298981732e
@ -754,7 +754,10 @@ public:
|
||||
update_windows_color_profile_from_preferences();
|
||||
|
||||
// Change sprite grid bounds
|
||||
if (m_context && m_context->activeDocument()) {
|
||||
if (m_context &&
|
||||
m_context->activeDocument() &&
|
||||
m_context->activeDocument()->sprite() &&
|
||||
m_context->activeDocument()->sprite()->gridBounds() != gridBounds()) {
|
||||
ContextWriter writer(m_context);
|
||||
Tx tx(m_context, Strings::commands_GridSettings(), ModifyDocument);
|
||||
tx(new cmd::SetGridBounds(writer.sprite(), gridBounds()));
|
||||
|
Loading…
x
Reference in New Issue
Block a user