Bug 815863
| Summary: | fast clicking between dashboard and inventory causes global exception | ||||||
|---|---|---|---|---|---|---|---|
| Product: | [Other] RHQ Project | Reporter: | John Mazzitelli <mazz> | ||||
| Component: | Core UI | Assignee: | Nobody <nobody> | ||||
| Status: | NEW --- | QA Contact: | |||||
| Severity: | low | Docs Contact: | |||||
| Priority: | low | ||||||
| Version: | 4.4 | CC: | hrupp | ||||
| Target Milestone: | --- | ||||||
| Target Release: | --- | ||||||
| Hardware: | Unspecified | ||||||
| OS: | Unspecified | ||||||
| Whiteboard: | |||||||
| Fixed In Version: | Doc Type: | Bug Fix | |||||
| Doc Text: | Story Points: | --- | |||||
| Clone Of: | Environment: | ||||||
| Last Closed: | Type: | Bug | |||||
| Regression: | --- | Mount Type: | --- | ||||
| Documentation: | --- | CRM: | |||||
| Verified Versions: | Category: | --- | |||||
| oVirt Team: | --- | RHEL 7.3 requirements from Atomic Host: | |||||
| Cloudforms Team: | --- | Target Upstream Version: | |||||
| Embargoed: | |||||||
| Attachments: |
|
||||||
|
Description
John Mazzitelli
2012-04-24 16:52:00 UTC
from the stack trace, it looks like one of these calls to addChild is passing in null:
public void setContent(Canvas newContent) {
if (newContent instanceof HasViewName) {
LocatableVLayout decoratedContent = decorateWithTitleBar(((HasViewName) newContent).getViewName(),
newContent);
contentCanvas.addChild(decoratedContent);
} else {
contentCanvas.addChild(newContent);
}
|