added reordering, refactored mixins

This commit is contained in:
2022-02-07 00:29:25 -06:00
parent 3cef394818
commit 2732aa0c2f
15 changed files with 154 additions and 108 deletions

View File

@@ -7,10 +7,10 @@ gi.require_version('Gdk', '3.0')
from gi.repository import Gtk, Gdk
# Application imports
from mixins import CommonActionsMixin
from mixins import CommonWidgetGeneratorMixin, CommonActionsMixin
class ChangeView(Gtk.Box, CommonActionsMixin):
class ChangeView(Gtk.Box, CommonWidgetGeneratorMixin, CommonActionsMixin):
def __init__(self):
super(ChangeView, self).__init__()