[Bug 222548] New: Yast Ccatalog URL is too narrow
https://bugzilla.novell.com/show_bug.cgi?id=222548 Summary: Yast Ccatalog URL is too narrow Product: openSUSE 10.2 Version: Beta 2 plus Platform: i386 OS/Version: Other Status: NEW Severity: Normal Priority: P5 - None Component: YaST2 AssignedTo: bnc-team-screening@forge.provo.novell.com ReportedBy: gp@novell.com QAContact: jsrain@novell.com How to reproduce: o Invoke "Installation Sources" module. o The "Configure Software Catalogs" appears; choose "Add". o The "Media Type" dialog appears; choose "Specify URL..." o The "Catalog URL" dialog apperas, and the "URL" entry there is too short. -- Configure bugmail: https://bugzilla.novell.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug, or are watching someone who is.
https://bugzilla.novell.com/show_bug.cgi?id=222548 ------- Comment #1 from gp@novell.com 2006-11-19 14:01 MST ------- Created an attachment (id=106167) --> (https://bugzilla.novell.com/attachment.cgi?id=106167&action=view) Screenshot -- Configure bugmail: https://bugzilla.novell.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug, or are watching someone who is.
https://bugzilla.novell.com/show_bug.cgi?id=222548 chrubis@novell.com changed: What |Removed |Added ---------------------------------------------------------------------------- AssignedTo|bnc-team- |yast2-maintainers@suse.de |screening@forge.provo.novell| |.com | -- Configure bugmail: https://bugzilla.novell.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug, or are watching someone who is.
https://bugzilla.novell.com/show_bug.cgi?id=222548 sh@novell.com changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |sh@novell.com AssignedTo|yast2-maintainers@suse.de |lslezak@novell.com ------- Comment #2 from sh@novell.com 2006-11-21 06:51 MST ------- That looks a lot like a over-layouted dialog - probably with a lot of HWeight() / VWeight() or a lot of VSpacing() / HSpacing() layout helpers. I recommend to get rid of most of the inner content of the dialog and simply use HVCenter() around the label and the OutputField(). If you have trouble with this, please let me know. -- Configure bugmail: https://bugzilla.novell.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug, or are watching someone who is.
https://bugzilla.novell.com/show_bug.cgi?id=222548 lslezak@novell.com changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |ASSIGNED ------- Comment #3 from lslezak@novell.com 2006-11-21 08:08 MST ------- SourceDialogs.ycp:1054: `HBox (`HStretch (), `VBox (`VStretch (), proto, `VStretch ()), `HStretch ()) 'proto' is a dialog for the selected protocol. When I use just `HVCenter(proto) it even worse, the widget is smaller. But when I set 80% width for the widget (10% space on the left and on the right) `HBox(`HWeight(10, `HStretch()), `HWeight(80, proto), `HWeight(10, `HStretch())) it looks right. -- Configure bugmail: https://bugzilla.novell.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug, or are watching someone who is.
https://bugzilla.novell.com/show_bug.cgi?id=222548 ------- Comment #4 from sh@novell.com 2006-11-21 08:23 MST ------- Try this: `HVCenter( `MinWidth( 60, `TextEntry(`opt(`hstretch), "&URL", url ) ) ); The weights you use are problematic: They enforce (!) that weight ratio. If there is little space (e.g. because the window is very small), they will also be enforced, so the content will become smaller. MinSize() OTOH makes sure of a minimum size. If there is more screen space, it will remain unused. If there is less OTOH, the maximum available space will be used. And the HVCenter() is what takes any extra space, i.e. anything more than MinWidth(). See also http://w3.suse.de/~sh/y2-ui-revisited.sxi -- Configure bugmail: https://bugzilla.novell.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug, or are watching someone who is.
https://bugzilla.novell.com/show_bug.cgi?id=222548 ------- Comment #5 from sh@novell.com 2006-11-21 08:25 MST ------- Created an attachment (id=106411) --> (https://bugzilla.novell.com/attachment.cgi?id=106411&action=view) Screen shot with MinSize() (modified Wizard3.ycp example) -- Configure bugmail: https://bugzilla.novell.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug, or are watching someone who is.
https://bugzilla.novell.com/show_bug.cgi?id=222548 lslezak@novell.com changed: What |Removed |Added ---------------------------------------------------------------------------- Status|ASSIGNED |RESOLVED Resolution| |FIXED ------- Comment #6 from lslezak@novell.com 2006-11-22 01:37 MST ------- HuHa: Thanks! Fixed in yast2-packager-2.14.9 -- Configure bugmail: https://bugzilla.novell.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug, or are watching someone who is.
participants (1)
-
bugzilla_noreply@novell.com