2006-10-04 15:26:41 +02:00
|
|
|
from sugar.graphics.canvasicon import CanvasIcon
|
|
|
|
import conf
|
2006-09-09 02:34:47 +02:00
|
|
|
|
2006-10-04 15:26:41 +02:00
|
|
|
class MyIcon(CanvasIcon):
|
2006-10-05 14:38:37 +02:00
|
|
|
def __init__(self):
|
2006-09-09 02:34:47 +02:00
|
|
|
profile = conf.get_profile()
|
2006-10-04 15:26:41 +02:00
|
|
|
CanvasIcon.__init__(self, icon_name='stock-buddy',
|
2006-10-05 14:38:37 +02:00
|
|
|
color=profile.get_color())
|