8 lines
172 B
Python
8 lines
172 B
Python
|
import gi
|
||
|
gi.require_version('Gtk', '3.0')
|
||
|
from gi.repository import Gtk
|
||
|
from mods.files import main_win_file
|
||
|
|
||
|
builder = Gtk.Builder()
|
||
|
builder.add_from_file(main_win_file)
|