Skip to content

Commit

Permalink
Fix name(chart) call program
Browse files Browse the repository at this point in the history
  • Loading branch information
katieb1 committed Oct 10, 2024
1 parent 4132693 commit a22b487
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions R/name.R
Original file line number Diff line number Diff line change
Expand Up @@ -148,9 +148,9 @@ setReplaceMethod(
f = "name",
signature = "Chart",
definition = function(ssimObject, value) {
tt <- command(list(chart = NULL, set=NULL, lib = .filepath(ssimObject),
cid = .chartId(ssimObject), name = value),
.session(ssimObject), program = "SyncroSim.Console.exe")
tt <- command(list(chart = NULL, set = NULL, name = value,
lib = .filepath(ssimObject), cid = .chartId(ssimObject)),
.session(ssimObject), program = "SyncroSim.VizConsole.exe")
if (!identical(tt, "saved")) {
stop(tt)
}
Expand Down

0 comments on commit a22b487

Please sign in to comment.