Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
af3
AF3
Commits
e98eaaea
Commit
e98eaaea
authored
Jul 17, 2012
by
Florian Hölzl
Browse files
bugfix
refs 902
parent
f5a67a2f
Changes
1
Show whitespace changes
Inline
Side-by-side
org.fortiss.af3.deployment.ui/trunk/src/org/fortiss/af3/deployment/ui/editor/DeploymentEditorBackend.java
View file @
e98eaaea
...
...
@@ -55,6 +55,8 @@ import org.eclipse.swt.graphics.Image;
import
org.eclipse.swt.layout.FillLayout
;
import
org.eclipse.swt.widgets.Composite
;
import
org.eclipse.swt.widgets.Display
;
import
org.eclipse.swt.widgets.Event
;
import
org.eclipse.swt.widgets.Listener
;
import
org.fortiss.af3.component.model.Component
;
import
org.fortiss.af3.component.model.ComponentArchitecture
;
import
org.fortiss.af3.deployment.model.ComponentAllocation
;
...
...
@@ -149,6 +151,15 @@ public class DeploymentEditorBackend extends DeploymentGEFEditorBase {
parent
.
setLayout
(
new
FillLayout
());
gui
=
new
DeploymentEditorGUI
(
parent
,
SWT
.
NONE
);
// BUGFIX: https://af3.fortiss.org/issues/902
gui
.
addListener
(
SWT
.
Resize
,
new
Listener
()
{
@Override
public
void
handleEvent
(
Event
event
)
{
gui
.
pack
(
true
);
gui
.
layout
(
true
,
true
);
}
});
initDeploymentModel
();
setupCombos
();
...
...
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