show log window
[sface.git] / sface.py
index e6112cd..07a8c2e 100644 (file)
--- a/sface.py
+++ b/sface.py
@@ -18,15 +18,29 @@ QTreeView, QLineEdit {
   margin: 2px;
 }
 
-QLabel {
+QPushButton {
+  background-color: white;
+  border: 2px solid gray;
+  border-radius: 4px;
+  padding: 6px;
+}
 
+QPushButton:pressed {
+  background-color: #5599FF;
 }
+
+QLabel {
+  font-size: 14px;
+}
+
 ''')
 
 
     win = MainWindow()
     win.setWindowTitle("Sface: SFA Interface")
     win.show()
+    win.raise_()
+    win.activateWindow()
     app.setActiveWindow(win)
 
     sys.exit(app.exec_())