diff options
-rwxr-xr-x | control-center | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/control-center b/control-center index 261a4a02..bebd0d11 100755 --- a/control-center +++ b/control-center @@ -1121,7 +1121,7 @@ my @menu_items = ( my ($menu, $factory) = create_factory_menu($window_global, @menu_items); # to retrieve a path, one must prevent "accelerators completion": -sub get_path { join('', map { my $i = $_; $i =~ s/_//; $i } @_) } +sub get_path { join('', map { my $i = $_; $i =~ s/_//g; $i } @_) } # menus do not like "_" from profiles (whereas netprofile does not like spaces in profile names...) sub profile2menu { |