|
Bugzilla – Full Text Bug Listing |
| Summary: | Remote Administration Module Does Not Close | ||
|---|---|---|---|
| Product: | [openSUSE] openSUSE 11.0 | Reporter: | Martin Schmidkunz <mschmidkunz> |
| Component: | YaST2 | Assignee: | Katarina Machalkova <kmachalkova> |
| Status: | RESOLVED FIXED | QA Contact: | Jiri Srain <jsrain> |
| Severity: | Normal | ||
| Priority: | P5 - None | CC: | benji |
| Version: | Alpha 3 | ||
| Target Milestone: | --- | ||
| Hardware: | Other | ||
| OS: | Other | ||
| Whiteboard: | |||
| Found By: | --- | Services Priority: | |
| Business Priority: | Blocker: | --- | |
| Marketing QA Status: | --- | IT Deployment: | --- |
| Attachments: | y2log | ||
Created attachment 202899 [details]
y2log
I expect it's using Wizard::UserInput which maps `cancel to `back. The close button emits `cancel
global any UserInput() {
any input = UI::UserInput();
if ( input == `accept ) return `next;
if ( input == `cancel ) return `back;
return input;
}
`cancel symbol was not handled by module's main UI loop Fixed in svn, for the next build (y2-network 2.16.29) |
When clicking on close ("x"-Symbol) in the window decoration the module is not closed.