From 0d549706bfe718bf78490984bd245d34cd2a0006 Mon Sep 17 00:00:00 2001 From: Silvan Calarco Date: Mon, 20 Feb 2012 17:56:15 +0100 Subject: [PATCH] usbinstall.py: set application name to have X11 WM_CLASS property set (fixes problem with openbox hack for matchbox-keyboard which expects a window with no name to detect virtual keyboard) --- src/usbinstall.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/usbinstall.py b/src/usbinstall.py index 979dcf4..f63bd9f 100755 --- a/src/usbinstall.py +++ b/src/usbinstall.py @@ -410,7 +410,7 @@ def end_forced(event): event.ignore() # Program start -app = QtGui.QApplication([]) +app = QtGui.QApplication(['usbinstall']) gettext.install('usbinstall', '/usr/share/locale', unicode=1) window = create_window() mainloop = gobject.MainLoop()