changed screen sizing properties
This commit is contained in:
8
main.py
8
main.py
@ -9,9 +9,11 @@ class GuiMain:
|
|||||||
def __init__(self):
|
def __init__(self):
|
||||||
# pygame setup
|
# pygame setup
|
||||||
pygame.init()
|
pygame.init()
|
||||||
self.screenW = 561 * 1.45
|
#self.screenW = 561 * 1.45
|
||||||
self.screenH = 325 * 1.45
|
#self.screenH = 325 * 1.45
|
||||||
self.screen = pygame.display.set_mode((self.screenW, self.screenH), pygame.FULLSCREEN)
|
self.screen = pygame.display.set_mode((0,0), pygame.FULLSCREEN)
|
||||||
|
self.screenH = self.screen.get_height()
|
||||||
|
self.screenW = self.screen.get_width()
|
||||||
|
|
||||||
fx_mode_labels = [
|
fx_mode_labels = [
|
||||||
'Strings',
|
'Strings',
|
||||||
|
|||||||
Reference in New Issue
Block a user