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 66351
Collapse All | Expand All

(-)a/image/src/org/netbeans/modules/image/CustomZoomAction.java (+4 lines)
Lines 158-161 Link Here
158
        return "org/netbeans/modules/image/customZoom.gif"; // NOI18N
158
        return "org/netbeans/modules/image/customZoom.gif"; // NOI18N
159
    }
159
    }
160
    
160
    
161
    @Override
162
    protected boolean asynchronous() {
163
        return false;
164
    }
161
}
165
}
(-)a/image/src/org/netbeans/modules/image/ZoomInAction.java (+5 lines)
Lines 99-102 Link Here
99
    protected String iconResource() {
99
    protected String iconResource() {
100
        return "org/netbeans/modules/image/zoomIn.gif"; // NOI18N
100
        return "org/netbeans/modules/image/zoomIn.gif"; // NOI18N
101
    }
101
    }
102
103
    @Override
104
    protected boolean asynchronous() {
105
        return false;
106
    }
102
}
107
}
(-)a/image/src/org/netbeans/modules/image/ZoomOutAction.java (-1 / +6 lines)
Lines 99-102 Link Here
99
    protected String iconResource() {
99
    protected String iconResource() {
100
        return "org/netbeans/modules/image/zoomOut.gif"; // NOI18N
100
        return "org/netbeans/modules/image/zoomOut.gif"; // NOI18N
101
    }
101
    }
102
}
102
103
    @Override
104
    protected boolean asynchronous() {
105
        return false;
106
    }
107
}

Return to bug 66351