Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
vadere
vadere
Commits
63274a48
Commit
63274a48
authored
Nov 07, 2018
by
Stefan Schuhbaeck
Browse files
show dir structure in copy path menue
parent
47471145
Changes
1
Hide whitespace changes
Inline
Side-by-side
VadereGui/src/org/vadere/gui/projectview/view/ProjectView.java
View file @
63274a48
...
...
@@ -602,7 +602,7 @@ public class ProjectView extends JFrame implements ProjectFinishedListener, Sing
File
[]
children
=
outDir
.
listFiles
();
if
(
children
!=
null
){
for
(
File
file
:
children
)
{
String
name
=
file
.
isDirectory
()
?
file
.
getName
()
+
"/"
:
file
.
getName
();
String
name
=
file
.
isDirectory
()
?
"---*"
+
file
.
getName
()
+
"/"
:
"---*"
+
file
.
getName
();
copyPath
.
add
(
new
JMenuItem
(
new
ActionToClipboard
(
name
,
file
.
getAbsolutePath
()))
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment