mirror of
https://github.com/aseprite/aseprite.git
synced 2025-03-18 07:21:09 +00:00
Publish CopyTiles command with "CopyTiles" ID (instead of "MoveTiles" ID)
This commit is contained in:
parent
7f3a34c757
commit
a9974e37d3
@ -30,8 +30,9 @@ struct MoveTilesParams : public NewParams {
|
||||
class MoveTilesCommand : public CommandWithNewParams<MoveTilesParams> {
|
||||
public:
|
||||
MoveTilesCommand(const bool copy)
|
||||
: CommandWithNewParams<MoveTilesParams>(CommandId::MoveTiles(),
|
||||
CmdRecordableFlag)
|
||||
: CommandWithNewParams<MoveTilesParams>(
|
||||
(copy ? CommandId::CopyTiles():
|
||||
CommandId::MoveTiles()), CmdRecordableFlag)
|
||||
, m_copy(copy) { }
|
||||
|
||||
protected:
|
||||
|
Loading…
x
Reference in New Issue
Block a user