Skip to content

Commit

Permalink
Match new signature for multiselectionresponsive.
Browse files Browse the repository at this point in the history
  • Loading branch information
LTLA committed Dec 11, 2024
1 parent c51979a commit d40be21
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions R/AggregatedDotPlot.R
Original file line number Diff line number Diff line change
Expand Up @@ -892,13 +892,12 @@ setMethod(".hideInterface", "AggregatedDotPlot", function(x, field) {
})

#' @export
setMethod(".multiSelectionResponsive", "AggregatedDotPlot", function(x, dims = character(0)) {
if ("row" %in% dims) {
setMethod(".multiSelectionResponsive", "AggregatedDotPlot", function(x, dim) {
if (dim == "row") {
if (!slot(x, .ADPCustomFeatNames)) {
return(TRUE)
}
}
if ("column" %in% dims) {
} else if (dim == "column") {
return(TRUE)
}
return(FALSE)
Expand Down

0 comments on commit d40be21

Please sign in to comment.