mirror of
https://github.com/aseprite/aseprite.git
synced 2024-12-26 18:21:44 +00:00
Add some asserts in CopyCel to find the cause of a possible crash
This commit is contained in:
parent
53a43aa0ce
commit
720bd349e3
@ -1,5 +1,5 @@
|
||||
// Aseprite
|
||||
// Copyright (C) 2001-2015 David Capello
|
||||
// Copyright (C) 2001-2016 David Capello
|
||||
//
|
||||
// This program is free software; you can redistribute it and/or modify
|
||||
// it under the terms of the GNU General Public License version 2 as
|
||||
@ -126,6 +126,10 @@ void CopyCel::onExecute()
|
||||
void CopyCel::onFireNotifications()
|
||||
{
|
||||
CmdSequence::onFireNotifications();
|
||||
|
||||
ASSERT(m_srcLayer.layer());
|
||||
ASSERT(m_dstLayer.layer());
|
||||
|
||||
static_cast<app::Document*>(m_dstLayer.layer()->sprite()->document())
|
||||
->notifyCelCopied(
|
||||
m_srcLayer.layer(), m_srcFrame,
|
||||
|
Loading…
Reference in New Issue
Block a user