This Bugzilla instance is a read-only archive of historic NetBeans bug reports. To report a bug in NetBeans please follow the project's instructions for reporting issues.

View | Details | Raw Unified | Return to bug 36119
Collapse All | Expand All

(-)monitor/src/org/netbeans/modules/web/monitor/client/TransactionView.java (+8 lines)
Lines 64-69 Link Here
64
import org.netbeans.modules.web.monitor.data.DataRecord;
64
import org.netbeans.modules.web.monitor.data.DataRecord;
65
import org.netbeans.modules.web.monitor.data.MonitorData;
65
import org.netbeans.modules.web.monitor.data.MonitorData;
66
import org.openide.util.Mutex;
66
import org.openide.util.Mutex;
67
import org.openide.windows.Mode;
68
import org.openide.windows.WindowManager;
67
69
68
/**
70
/**
69
 * Update title does not work like it should. Maybe there is a getName
71
 * Update title does not work like it should. Maybe there is a getName
Lines 291-296 Link Here
291
    private boolean openedOnceAlready = false;
293
    private boolean openedOnceAlready = false;
292
    public void open(Workspace w) {
294
    public void open(Workspace w) {
293
295
296
        // PENDING It could be fine, declare it also in layer.
297
        Mode mode = WindowManager.getDefault().findMode("debugger"); // NOI18N
298
        if(mode != null) {
299
            mode.dockInto(this);
300
        }
301
        
294
	if(debug) log("running open(Workspace)"); //NOI18N
302
	if(debug) log("running open(Workspace)"); //NOI18N
295
	if(w == null) super.open();
303
	if(w == null) super.open();
296
304

Return to bug 36119