Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
TTool
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
mbe-tools
TTool
Merge requests
!102
handle "bring to font" and "send to back" + links between the clone components itself and sub components
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
handle "bring to font" and "send to back" + links between the clone components itself and sub components
minh-issue_82
into
master
Overview
0
Commits
2
Pipelines
0
Changes
2
Merged
Minh Hiep Pham
requested to merge
minh-issue_82
into
master
6 years ago
Overview
0
Commits
2
Pipelines
0
Changes
2
Expand
0
0
Merge request reports
Compare
master
master (base)
and
latest version
latest version
a3eda8fb
2 commits,
6 years ago
2 files
+
13
−
3
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
2
Search (e.g. *.vue) (Ctrl+P)
src/main/java/ui/TDiagramPanel.java
+
7
−
1
Options
@@ -2408,7 +2408,13 @@ public abstract class TDiagramPanel extends JPanel implements GenericTree {
JOptionPane
.
showMessageDialog
(
mgui
.
getFrame
(),
"Clone creation failed"
,
"Exception"
,
JOptionPane
.
INFORMATION_MESSAGE
);
}
//bringToBack(_tgc);
bringToBack
(
_tgc
);
for
(
int
i
=
0
;
i
<
componentList
.
size
();
i
++){
if
(
componentList
.
get
(
i
)
instanceof
TGConnector
)
{
TGComponent
t
=
componentList
.
get
(
i
);
bringToFront
(
t
);
}
}
mgui
.
changeMade
(
this
,
NEW_COMPONENT
);
repaint
();
}
Loading