Eclipse freezes on closing widget

GWT Designer allows you to quickly create the modules, composites, panels, remote services and other elements that comprise Google Web Tookit applications.

Moderators: Konstantin.Scheglov, gnebling, Alexander.Mitin, jwren, Eric Clayberg

Eclipse freezes on closing widget

Postby ashouric » Wed Oct 25, 2006 10:02 pm

Dear All,

In the following case, eclipse hangs, similar incidents happen after installing the newly released IE7.

Code: Select all
public class Mine extends Composite {
   public Mine() {
      initWidget( new Label("Hello") );
   }
}


Code: Select all
public class ImageViewer implements EntryPoint {

   public void onModuleLoad() {
      final RootPanel rootPanel = RootPanel.get();
      rootPanel.add( new Label() );

      final TextArea textArea = new TextArea();
      rootPanel.add(textArea, 123, 305);
      textArea.setSize("91px", "18px");

      final Mine mine = new Mine();
      rootPanel.add(mine, 63, 215);

      final Button button = new Button();
      rootPanel.add(button, 94, 128);
      button.setText("New Button");
   }

}


    1 - Open 'Mine' Widget (designer view by default)
    2 - Open ImageViewer (designer view by default)
    3 - Mouse Click on the 'x' to close ImageViewer
    4 - CPU utilization is 99%, eclipse hangs, with no logs
ashouric
 
Posts: 75
Joined: Sat Sep 30, 2006 9:13 pm

Postby Konstantin.Scheglov » Fri Oct 27, 2006 4:43 am

There was problem with closing when you have two opened GWT editors. Now it is fixed, try new build.
Konstantin.Scheglov
Moderator
 
Posts: 186
Joined: Tue Oct 18, 2005 8:11 pm
Location: Russian Federation, Lipetsk


Return to GWT Designer

Who is online

Users browsing this forum: No registered users and 3 guests