Skip to content
This repository has been archived by the owner on Jan 14, 2025. It is now read-only.

Commit

Permalink
Merge branch 'feat/fix-issue-#10' into dev
Browse files Browse the repository at this point in the history
  • Loading branch information
Claudius-Appel committed Apr 22, 2024
2 parents 9415ffa + 3d33cc4 commit 577f1f7
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
2 changes: 1 addition & 1 deletion DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Package: duflor.gui
Title: Frontend for duflor-package
Version: 0.0.1.9006
Version: 0.0.1.9007
Author: Claudius Appel
Authors@R: c(
person("Claudius", "Appel", email = "[email protected]" , role = c("aut", "cre"))
Expand Down
6 changes: 5 additions & 1 deletion R/app.R
Original file line number Diff line number Diff line change
Expand Up @@ -590,7 +590,11 @@ duflor_gui <- function() {
)
return()
}
file <- DATA$r__tbl_dir_files$images_filtered[[input$tbl_results_filtered_rows_selected]]
if (FLAGS$analyse_single_image) {
file <- DATA$results$results$full_path
} else {
file <- DATA$r__tbl_dir_files$images_filtered[[input$tbl_results_filtered_rows_selected]]
}
image_dimensions <- as.integer(get_image_dimensions(file))
## LOAD IMAGE
if (is.na(DATA$last_masked_image) || (DATA$last_masked_image!=file)) {
Expand Down

0 comments on commit 577f1f7

Please sign in to comment.