deps creation - improvements. db and history fixes. widgets creation - factory

This commit is contained in:
ingvar1995 2018-04-29 00:52:42 +03:00
parent a9d2d3d809
commit e9272eee2a
18 changed files with 419 additions and 319 deletions

View file

@ -9,8 +9,8 @@ from ui import av_widgets
class CallsManager:
def __init__(self, tox, settings):
self._call = av.calls.AV(tox.AV) # object with data about calls
def __init__(self, toxAV, settings):
self._call = av.calls.AV(toxAV, settings) # object with data about calls
self._call_widgets = {} # dict of incoming call widgets
self._incoming_calls = set()
self._settings = settings