Cleanup kbd config passing
This commit is contained in:
+7
-3
@@ -47,17 +47,21 @@ else:
|
||||
program = sys.argv[1]
|
||||
|
||||
if gtk.gdk.screen_width() < 1200 or gtk.gdk.screen_height() < 900:
|
||||
fullscreen = True
|
||||
width = -1
|
||||
height = -1
|
||||
else:
|
||||
fullscreen = False
|
||||
width = 1200
|
||||
height = 900
|
||||
|
||||
dpi = min(_sugar.get_screen_dpi(), 96)
|
||||
|
||||
emulator = Emulator(width, height, fullscreen, dpi)
|
||||
if sourcedir:
|
||||
kbd_config = os.path.join(sourcedir, 'shell/data/kbdconfig')
|
||||
else:
|
||||
kbd_config = os.path.join(env.get_data_dir(), 'kbdconfig')
|
||||
|
||||
emulator = Emulator(width, height, dpi)
|
||||
emulator.set_keyboard_config(kbd_config)
|
||||
emulator.start()
|
||||
|
||||
if sourcedir:
|
||||
|
||||
Reference in New Issue
Block a user