Skip to content

Commit

Permalink
Merge pull request #1267 from Catrobat/release-2.10.1
Browse files Browse the repository at this point in the history
Release 2.10.1
  • Loading branch information
wslany authored Apr 26, 2023
2 parents 6c62260 + 0ed37d4 commit e39cee6
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -335,6 +335,9 @@ class DefaultCommandManager(
}

override fun adjustUndoListForClippingTool() {
if (undoCommandList.first.toString().split(".", "@").size < FIVE) {
return
}
val commandName = undoCommandList.first.toString().split(".", "@")[FIVE]
if (commandName == ClippingCommand::class.java.simpleName) {
val clippingCommand = undoCommandList.pop()
Expand Down
4 changes: 2 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -47,8 +47,8 @@ ext {

androidSupportLibraryVersion = '28.0.0'

androidVersionCode = 49
androidVersionName = '2.10.0'
androidVersionCode = 50
androidVersionName = '2.10.1'
}

if(project.hasProperty("snapshot")) {
Expand Down

0 comments on commit e39cee6

Please sign in to comment.