better theme loading and window handling
This commit is contained in:
parent
3ba0fbdc0e
commit
aad2d8fcbc
@ -1,4 +1,5 @@
|
||||
self.gamewindow.setFixedSize(820, 730)
|
||||
self.width = 820
|
||||
self.height = 730
|
||||
|
||||
self.ao2text.setGeometry(16, 32, VIEWPORT_W - 32, 112)
|
||||
self.ao2text.setStyleSheet("background-color: rgba(0, 0, 0, 0); color: white;")
|
||||
|
22
gameview.py
22
gameview.py
@ -1182,6 +1182,16 @@ class gui(QtGui.QWidget):
|
||||
self.stream = 0
|
||||
self.specialstream = 0
|
||||
self.download_thread = None
|
||||
|
||||
# Finally, load the theme
|
||||
self.width = 820
|
||||
self.height = 730
|
||||
theme = get_option("General", "theme", "default")
|
||||
try:
|
||||
exec open(AO2XPpath+"ao2xp_themes/"+theme+"/theme.py")
|
||||
except Exception as e:
|
||||
QtGui.QMessageBox.critical(None, "Unable to load theme", "There was a problem loading the current theme \"%s\":\n\n%s." % (theme, e))
|
||||
os._exit(-2)
|
||||
|
||||
def resetOffsets(self):
|
||||
self.pairoffset.setValue(0)
|
||||
@ -1393,7 +1403,7 @@ class gui(QtGui.QWidget):
|
||||
def setWhiteFlash(self, on, realizationtype=0, msec=0):
|
||||
self.whiteflashlab.setVisible(on)
|
||||
if realizationtype == 1:
|
||||
self.playRealization()
|
||||
self.playRealization(f)
|
||||
if msec:
|
||||
self.whiteflash.start(msec)
|
||||
|
||||
@ -1408,12 +1418,8 @@ class gui(QtGui.QWidget):
|
||||
self.tcp.send("RT#judgeruling#" +str(variant)+ "#%")
|
||||
|
||||
def onPVPacket(self, charname):
|
||||
theme = get_option("General", "theme", "default")
|
||||
try:
|
||||
exec open(AO2XPpath+"ao2xp_themes/"+theme+"/theme.py")
|
||||
except Exception as e:
|
||||
QtGui.QMessageBox.critical(None, "Unable to load theme", "There was a problem loading the current theme \"%s\":\n\n%s." % (theme, e))
|
||||
os._exit(-2)
|
||||
self.gamewindow.setFixedSize(self.width, self.height)
|
||||
self.gamewindow.center()
|
||||
if not self.swapping:
|
||||
self.loadCharacter(charname)
|
||||
|
||||
@ -2959,7 +2965,7 @@ class gui(QtGui.QWidget):
|
||||
if char[0].lower() == autopick and char[1] == 0:
|
||||
coincidence = i
|
||||
break
|
||||
|
||||
|
||||
if coincidence > -1:
|
||||
self.tcp.send("CC#0#"+str(coincidence)+"#ur mom gay#%")
|
||||
else:
|
||||
|
Loading…
Reference in New Issue
Block a user