aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMatteo Pasotti <matteo.pasotti@gmail.com>2014-09-16 00:40:49 +0200
committerMatteo Pasotti <matteo.pasotti@gmail.com>2014-09-16 00:40:49 +0200
commit4983582117f0aa97021a4119d7413490d94477e7 (patch)
tree08dd855afd28394b7d59e5c7af1f4fe5c77eff98
parent54e27181f2f1fa1916a5f7b61829e32228f97560 (diff)
downloadcolin-keep-4983582117f0aa97021a4119d7413490d94477e7.tar
colin-keep-4983582117f0aa97021a4119d7413490d94477e7.tar.gz
colin-keep-4983582117f0aa97021a4119d7413490d94477e7.tar.bz2
colin-keep-4983582117f0aa97021a4119d7413490d94477e7.tar.xz
colin-keep-4983582117f0aa97021a4119d7413490d94477e7.zip
drop extra chars from the label of the selected dm
-rw-r--r--lib/AdminPanel/Module/DisplayManager.pm4
1 files changed, 3 insertions, 1 deletions
diff --git a/lib/AdminPanel/Module/DisplayManager.pm b/lib/AdminPanel/Module/DisplayManager.pm
index 1292108..1c1c8b3 100644
--- a/lib/AdminPanel/Module/DisplayManager.pm
+++ b/lib/AdminPanel/Module/DisplayManager.pm
@@ -272,7 +272,9 @@ sub _manageProxyDialog {
}
);
}elsif ($widget == $okButton) {
- addVarsInSh($self->conffile, { DISPLAYMANAGER => lc($rb_group->currentButton()->label()) } );
+ my $current_choice = AdminPanel::Shared::trim($rb_group->currentButton()->label());
+ $current_choice =~s/\&//g;
+ addVarsInSh($self->conffile, { DISPLAYMANAGER => lc($current_choice) } );
$self->ask_for_X_restart();
last;
}