aboutsummaryrefslogtreecommitdiffstats
path: root/lib/AdminPanel/Module
diff options
context:
space:
mode:
Diffstat (limited to 'lib/AdminPanel/Module')
-rw-r--r--lib/AdminPanel/Module/DisplayManager.pm6
1 files changed, 5 insertions, 1 deletions
diff --git a/lib/AdminPanel/Module/DisplayManager.pm b/lib/AdminPanel/Module/DisplayManager.pm
index 6fa61428..a246cf74 100644
--- a/lib/AdminPanel/Module/DisplayManager.pm
+++ b/lib/AdminPanel/Module/DisplayManager.pm
@@ -225,9 +225,13 @@ sub _manageProxyDialog {
my $vbox_inputfields = $factory->createVBox($hbox_content);
# list of desktop managers
+ my $rb_group = $factory->createRadioButtonGroup($vbox_labels_flags);
+ my $rbbox = $factory->createVBox($rb_group);
foreach my $d (@{$self->dmlist()})
{
- $factory->createLabel($vbox_labels_flags, $d->{NAME});
+ my $rb = $factory->createRadioButton($factory->createHBox($factory->createLeft($rbbox)), $d->{NAME});
+ $rb_group->addRadioButton($rb);
+ $rb->DISOWN();
}
my $hbox_filler = $factory->createHBox($layout);
$factory->createSpacing($hbox_filler,$yui::YD_VERT,2);