source: src/mlx/mlx.py@ 35:d32890325137

Last change on this file since 35:d32890325137 was 29:5bcc0ef808c5, checked in by István Váradi <ivaradi@…>, 12 years ago

The status icon and hiding/showing the window works

File size: 280 bytes
Line 
1# The main program
2
3from .gui.gui import GUI
4from .gui.common import *
5
6import os
7
8def main(iconDirectory):
9 """The main operation of the program."""
10 gui = GUI()
11
12 gui.build(iconDirectory)
13
14 gui.run()
15
16if __name__ == "__main__":
17 main(os.path.dirname(__file__))
18
19
Note: See TracBrowser for help on using the repository browser.