manuskript/manuskript/ui/views/outlineView.py
TheJackiMonster 5cc52a43cd
Moved views and reordered connection of events in summary view
Signed-off-by: TheJackiMonster <thejackimonster@gmail.com>
2021-06-01 15:30:48 +02:00

20 lines
360 B
Python

#!/usr/bin/env python3
# -*- coding: utf-8 -*-
import gi
gi.require_version("Gtk", "3.0")
from gi.repository import Gtk
class OutlineView:
def __init__(self):
builder = Gtk.Builder()
builder.add_from_file("ui/outline.glade")
self.widget = builder.get_object("outline_view")
def show(self):
self.widget.show_all()