Refactor to use new protocol module and sipo.
[bertos.git] / bertos / emul / emulwin.cpp
index f7dc84d004f3a3d1309a6680c1c2436e2ea52a35..a49fa4807c910b8edcf4db0db853471e81df3718 100644 (file)
@@ -31,7 +31,6 @@
  *
  * -->
  *
- * \version $Id$
  *
  * \author Bernie Innocenti <bernie@codewiz.org>
  *
@@ -88,9 +87,9 @@ EmulWin::EmulWin(Emulator *e)
                // LCD
                QHBoxLayout *lay_lcd = new QHBoxLayout();
                box_right->addLayout(lay_lcd);
-                       lay_lcd->addStretch();
-                       lay_lcd->addWidget(e->emulLCD = new EmulLCD(central));
-                       lay_lcd->addStretch();
+                       lay_lcd->addStretch(1);
+                       lay_lcd->addWidget(e->emulLCD = new EmulLCD(central), 8);
+                       lay_lcd->addStretch(1);
 
                // Keyboard
                box_right->addWidget(e->emulKbd = new EmulKbd(central));