1
0
mirror of https://github.com/gryf/wmdocklib.git synced 2025-12-19 04:20:17 +01:00

Added more class attributes.

This commit is contained in:
2022-04-18 19:10:49 +02:00
parent 671c1b9361
commit 811ecac3d3

View File

@@ -21,10 +21,12 @@ class DockApp:
def __init__(self, args=None): def __init__(self, args=None):
self.args = args self.args = args
self.charset_start = None self.charset_start = None
self.charset_width = None self.charset_width = 0
self.char_width = None self.char_width = None
self.char_height = None self.char_height = None
self.font = '' self.font = None
self.background = None
self.patterns = None
def check_for_events(self): def check_for_events(self):
event = helpers.get_event() event = helpers.get_event()