diff options
-rw-r--r-- | inst/GUI/gmkin.R | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/inst/GUI/gmkin.R b/inst/GUI/gmkin.R index a2fb132..71a9f04 100644 --- a/inst/GUI/gmkin.R +++ b/inst/GUI/gmkin.R @@ -376,7 +376,7 @@ new_ds_from_csv_handler <- function(h, ...) { length)$x),
data = tmpdl)
ds[[ds.cur]]$data$override <<- as.numeric(NA)
- if (!is.null(ds[[ds.cur]]$data$err)) ds[[ds.cur]]$data$err <<- 1
+ if (is.null(ds[[ds.cur]]$data$err)) ds[[ds.cur]]$data$err <<- 1
update_ds.df()
ds.gtable[,] <- ds.df
update_ds_editor()
|