Close texteditor in filemanager on ESC

This commit is contained in:
Johannes Zellner
2023-01-26 19:26:52 +01:00
parent 4a38fa1238
commit 430e72a3ef
+2 -1
View File
@@ -866,7 +866,8 @@ app.controller('FileManagerController', ['$scope', '$translate', '$timeout', 'Cl
event.preventDefault();
$scope.$apply($scope.actionSelectAll);
} else if(event.key === 'Escape') {
$scope.$apply(function () { $scope.selected = []; });
if ($scope.textEditor.visible) return $scope.textEditor.maybeClose();
else $scope.$apply(function () { $scope.selected = []; });
}
});