Some Eclipse Foundation services are deprecated, or will be soon. Please ensure you've read this important communication.
View | Details | Raw Unified | Return to bug 302224
Collapse All | Expand All

(-)src/org/eclipse/swt/internal/widgets/shellkit/ShellLCA.java (-3 / +4 lines)
Lines 122-130 Link Here
122
122
123
  public void renderChanges( final Widget widget ) throws IOException {
123
  public void renderChanges( final Widget widget ) throws IOException {
124
    Shell shell = ( Shell )widget;
124
    Shell shell = ( Shell )widget;
125
    // Important: Order matters, write setMode() before setBounds()
126
    writeMode( shell );
127
    ControlLCAUtil.writeChanges( shell );
128
    writeImage( shell );
125
    writeImage( shell );
129
    writeText( shell );
126
    writeText( shell );
130
    writeAlpha( shell );
127
    writeAlpha( shell );
Lines 132-141 Link Here
132
    //            strange behavior!
129
    //            strange behavior!
133
    writeOpen( shell );
130
    writeOpen( shell );
134
    writeActiveShell( shell );
131
    writeActiveShell( shell );
132
    // Important: Order matters, write setMode() before setBounds() and after
133
    // open()
134
    writeMode( shell );
135
    writeFullScreen( shell );
135
    writeFullScreen( shell );
136
    writeCloseListener( shell );
136
    writeCloseListener( shell );
137
    writeMinimumSize( shell );
137
    writeMinimumSize( shell );
138
    writeDefaultButton( shell );
138
    writeDefaultButton( shell );
139
    ControlLCAUtil.writeChanges( shell );
139
    WidgetLCAUtil.writeCustomVariant( shell );
140
    WidgetLCAUtil.writeCustomVariant( shell );
140
  }
141
  }
141
142

Return to bug 302224