Files
aza/APP/logo-tool/main.py
2026-03-30 07:59:11 +02:00

26 lines
565 B
Python
Raw Permalink Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
"""
Logo-Tool Pixel-Perfect Logo Editor
Haupteinstiegspunkt: startet die Qt-Anwendung.
"""
import sys
from PySide6.QtWidgets import QApplication
from PySide6.QtCore import Qt
from ui.main_window import MainWindow
def main():
QApplication.setHighDpiScaleFactorRoundingPolicy(
Qt.HighDpiScaleFactorRoundingPolicy.PassThrough
)
app = QApplication(sys.argv)
app.setApplicationName("Logo-Tool")
app.setOrganizationName("AZA")
window = MainWindow()
window.show()
sys.exit(app.exec())
if __name__ == "__main__":
main()