mirror of
https://git.mirrors.martin98.com/https://github.com/Ultimaker/Cura
synced 2025-05-02 00:34:26 +08:00
12 lines
347 B
Python
12 lines
347 B
Python
from Cura.Wx.WxApplication import WxApplication
|
|
from Cura.Wx.MainWindow import MainWindow
|
|
|
|
class PrinterApplication(WxApplication):
|
|
def __init__(self):
|
|
super(PrinterApplication, self).__init__()
|
|
|
|
def run(self):
|
|
window = MainWindow("Cura Printer")
|
|
window.Show()
|
|
super(PrinterApplication, self).run()
|