From 8a98cdc6e026d230aa555a9aa8b828d20ad0b1f5 Mon Sep 17 00:00:00 2001 From: Marco Pesenti Gritti Date: Fri, 9 Mar 2007 14:59:47 +0100 Subject: [PATCH] Fix matchbox invocation --- sugar/emulator.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sugar/emulator.py b/sugar/emulator.py index bc069241..53732554 100644 --- a/sugar/emulator.py +++ b/sugar/emulator.py @@ -69,7 +69,7 @@ class MatchboxProcess(Process): options += '-theme olpc ' if kbd_config: - options = '-kbdconfig %s ' % kbd_config + options += '-kbdconfig %s ' % kbd_config command = 'matchbox-window-manager %s ' % options Process.__init__(self, command)