Bug 134844 - Widget allignment not working correctly
Summary: Widget allignment not working correctly
Status: RESOLVED INVALID
Alias: None
Product: SUSE Linux 10.1
Classification: openSUSE
Component: YaST2 (show other bugs)
Version: unspecified
Hardware: Other Other
: P5 - None : Normal (vote)
Target Milestone: ---
Assignee: Stefan Hundhammer
QA Contact: Klaus Kämpf
URL:
Whiteboard:
Keywords:
Depends on:
Blocks:
 
Reported: 2005-11-22 09:45 UTC by Jiri Srain
Modified: 2005-11-22 10:19 UTC (History)
0 users

See Also:
Found By: Other
Services Priority:
Business Priority:
Blocker: ---
Marketing QA Status: ---
IT Deployment: ---


Attachments

Note You need to log in before you can comment on or make changes to this bug.
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...