[core/widget] remove module from widget initializer
This commit is contained in:
parent
fbbd95b7a8
commit
e359c75603
3 changed files with 5 additions and 3 deletions
|
@ -154,8 +154,9 @@ class Module(core.input.Object):
|
||||||
"""
|
"""
|
||||||
|
|
||||||
def add_widget(self, full_text="", name=None):
|
def add_widget(self, full_text="", name=None):
|
||||||
widget = core.widget.Widget(full_text=full_text, name=name, module=self)
|
widget = core.widget.Widget(full_text=full_text, name=name)
|
||||||
self.widgets().append(widget)
|
self.widgets().append(widget)
|
||||||
|
widget.module = self
|
||||||
return widget
|
return widget
|
||||||
|
|
||||||
"""Convenience method to retrieve a named widget
|
"""Convenience method to retrieve a named widget
|
||||||
|
|
|
@ -6,10 +6,10 @@ import util.format
|
||||||
|
|
||||||
|
|
||||||
class Widget(util.store.Store, core.input.Object):
|
class Widget(util.store.Store, core.input.Object):
|
||||||
def __init__(self, full_text="", name=None, module=None):
|
def __init__(self, full_text="", name=None):
|
||||||
super(Widget, self).__init__()
|
super(Widget, self).__init__()
|
||||||
self.__full_text = full_text
|
self.__full_text = full_text
|
||||||
self.module = module
|
self.module = None
|
||||||
self.name = name
|
self.name = name
|
||||||
|
|
||||||
@property
|
@property
|
||||||
|
|
|
@ -10,6 +10,7 @@
|
||||||
|
|
||||||
## Improvements
|
## Improvements
|
||||||
- app launcher (list of apps, themeable)
|
- app launcher (list of apps, themeable)
|
||||||
|
- github pages?
|
||||||
|
|
||||||
## TODO
|
## TODO
|
||||||
- themes: use colors to improve theme readability
|
- themes: use colors to improve theme readability
|
||||||
|
|
Loading…
Reference in a new issue