11 lines
237 B
Python
11 lines
237 B
Python
class GUISettings:
|
|
"""
|
|
Settings for the GUI
|
|
"""
|
|
# Collection of all pages the UI can use
|
|
pages = {}
|
|
# Currently viewed page
|
|
current_page = ''
|
|
# Title for the GTK window
|
|
application_title = 'Cardvault'
|