manuskript/bin/test_gtk.py
TheJackiMonster 59662921a7
Started adding UI python code and renamed Qt files for compatibility
Signed-off-by: TheJackiMonster <thejackimonster@gmail.com>
2021-05-16 20:23:10 +02:00

21 lines
284 B
Python

#!/usr/bin/env python3
# -*- coding: utf-8 -*-
import os
import sys
print("blub")
realpath = os.path.realpath(__file__)
sys.path.insert(1, os.path.join(os.path.dirname(realpath), '..'))
print("real")
from manuskript.ui import MainWindow
print("Hi")
mw = MainWindow()
mw.run()