Install Steam
login
|
language
简体中文 (Simplified Chinese)
繁體中文 (Traditional Chinese)
日本語 (Japanese)
한국어 (Korean)
ไทย (Thai)
Български (Bulgarian)
Čeština (Czech)
Dansk (Danish)
Deutsch (German)
Español - España (Spanish - Spain)
Español - Latinoamérica (Spanish - Latin America)
Ελληνικά (Greek)
Français (French)
Italiano (Italian)
Bahasa Indonesia (Indonesian)
Magyar (Hungarian)
Nederlands (Dutch)
Norsk (Norwegian)
Polski (Polish)
Português (Portuguese - Portugal)
Português - Brasil (Portuguese - Brazil)
Română (Romanian)
Русский (Russian)
Suomi (Finnish)
Svenska (Swedish)
Türkçe (Turkish)
Tiếng Việt (Vietnamese)
Українська (Ukrainian)
Report a translation problem
from PySide.QtGui import QWidget, QLabel, QVBoxLayout, QApplication, QFont
from PySide.QtCore import Qt, QTimer
from sfmUtils import *
class PlaceholderWindow(QWidget):
def __init__(self):
super(PlaceholderWindow, self).__init__()
self.setWindowTitle("fuck you")
self.setMinimumSize(500, 300)
label = QLabel("fuck you")
font = QFont()
font.setPointSize(128)
label.setFont(font)
label.setAlignment(Qt.AlignCenter)
layout = QVBoxLayout()
layout.addStretch()
layout.addWidget(label)
layout.addStretch()
self.setLayout(layout)
QTimer.singleShot(0, self.center_window)
def center_window(self):
screen = QApplication.desktop().screenGeometry()
size = self.geometry()
self.move(
(screen.width() - size.width()) // 2,
(screen.height() - size.height()) // 2
)
window = PlaceholderWindow()
window.show()
1- insults you
2- virus
Buuuuuuuuut the remaining 10% in my brain says 'what if blender quality lighting though'