Skip to content

Commit

Permalink
Add files via upload
Browse files Browse the repository at this point in the history
  • Loading branch information
par7133 committed Dec 15, 2023
1 parent c3128d9 commit 783ecb8
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
1 change: 0 additions & 1 deletion radxide.tcl
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,6 @@ namespace eval radxide {
}

set dan(WORKDIR) "$userhome/.radxwork" ;# working dir


# Check workdir existance..
if {![file exists $dan(WORKDIR)]} {
Expand Down
5 changes: 4 additions & 1 deletion tree.tcl
Original file line number Diff line number Diff line change
Expand Up @@ -447,7 +447,10 @@ namespace eval tree {
# 1. skip the ignored ones
for {set i [llength $dcont]} {$i} {} {
incr i -1
if {[ignoredDir [lindex $dcont $i]]} {
#if {$lev eq 1} {
# tk_messageBox -title $dan(TITLE) -icon error -message [lindex $dcont $i]
#}
if {[ignoredDir [lindex $dcont $i]] || (($lev eq 1) && (([file tail [lindex $dcont $i]] ne "Private") && ([file tail [lindex $dcont $i]] ne "Public")))} {
set dcont [lreplace $dcont $i $i]
}
}
Expand Down

0 comments on commit 783ecb8

Please sign in to comment.