Bug 372321

Summary: Remote Administration Module Does Not Close
Product: [openSUSE] openSUSE 11.0 Reporter: Martin Schmidkunz <mschmidkunz>
Component: YaST2Assignee: 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

Description Martin Schmidkunz 2008-03-19 12:07:01 UTC
When clicking on close ("x"-Symbol) in the window decoration the module is not closed.
Comment 1 Martin Schmidkunz 2008-03-19 12:09:01 UTC
Created attachment 202899 [details]
y2log
Comment 2 Benjamin Weber 2008-03-19 12:10:48 UTC
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;
    }
Comment 3 Katarina Machalkova 2008-03-28 12:23:26 UTC
`cancel symbol was not handled by module's main UI loop
Fixed in svn, for the next build (y2-network 2.16.29)