pylot/testPropDlg.py

13 lines
228 B
Python
Raw Normal View History

2014-10-30 13:38:41 +01:00
#!/usr/bin/env python
2015-10-19 05:32:10 +02:00
# -*- coding: utf-8 -*-
2014-10-30 13:38:41 +01:00
import sys, time
from PySide.QtGui import QApplication
from pylot.core.util.widgets import PropertiesDlg
app = QApplication(sys.argv)
win = PropertiesDlg()
win.show()
2015-10-19 05:32:10 +02:00
app.exec_()