Bug 134844

Summary: Widget allignment not working correctly
Product: [openSUSE] SUSE Linux 10.1 Reporter: Jiri Srain <jsrain>
Component: YaST2Assignee: Stefan Hundhammer <shundhammer>
Status: RESOLVED INVALID QA Contact: Klaus Kämpf <kkaempf>
Severity: Normal    
Priority: P5 - None    
Version: unspecified   
Target Milestone: ---   
Hardware: Other   
OS: Other   
Whiteboard:
Found By: Other Services Priority:
Business Priority: Blocker: ---
Marketing QA Status: --- IT Deployment: ---

Description Jiri Srain 2005-11-22 09:45:06 UTC
term progressbox = `VBox(
            `HSpacing(40),
            // popup heading
            `Heading (heading),
            `Left (`HBox (
                `VBox (
                    `Left (`Label (`opt (`boldFont), _("Package: "))),
                    `Left (`Label (`opt (`boldFont), _("Size: ")))
                ),
                `VBox (
                    `Left (`Label (name)),
                    `Left (`Label (sz))
                )
            )),
            `ProgressBar(`id(`progress), "", 100, 0 ),
            `HBox (
                `HStretch (),
                `PushButton (`id (`abort), Label::AbortButton ()),
                `HStretch ()
            )
        );

Is not displayed correctly. I'd expect that "Package: " and "Size: " are left-alligned with each other and the same for the values, but both of them are center-alligned.
Comment 1 Jiri Srain 2005-11-22 10:19:49 UTC
Forget it, my fault...