Krita Source Code Documentation
Loading...
Searching...
No Matches
__init__.py
Go to the documentation of this file.
1# -*- coding: utf-8 -*-
2#
3# SPDX-License-Identifier: GPL-3.0-or-later
4#
5
6editor_main_window = None
7
8
9def launch(parent=None):
10 global editor_main_window
11 if not editor_main_window:
12 from sceditor.mainwindow import EditorMainWindow
13 editor_main_window = EditorMainWindow(parent)
14 editor_main_window.resize(640, 480)
15 editor_main_window.show()
launch(parent=None)
Definition __init__.py:9